diff --git a/software/setup.py b/software/setup.py index f58d49e..fcff1b3 100644 --- a/software/setup.py +++ b/software/setup.py @@ -10,6 +10,7 @@ def version(): with open('poppy_ergo_jr/_version.py') as f: return re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", f.read()).group(1) + setup(name='poppy-ergo-jr', version=version(), packages=find_packages(), @@ -21,10 +22,10 @@ def version(): zip_safe=False, - author='https://github.com/poppy-project/poppy-ergo-jr/graphs/contributors', - author_email='pierre.rouanet@gmail.com', + author='Poppy Station', + author_email='dev@poppy-station.org', description='Poppy Ergo Jr Software Library', - url='https://github.com/poppy-project/poppy-ergo-jr', + url='https://poppy-project.org', license='GNU GENERAL PUBLIC LICENSE Version 3', )