diff --git a/software/setup.py b/software/setup.py index 60a4b96..f87c72a 100644 --- a/software/setup.py +++ b/software/setup.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# coding: utf8 import re import sys @@ -12,27 +11,21 @@ def version(): return re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", f.read()).group(1) -extra = {} -if sys.version_info >= (3,): - extra['use_2to3'] = True - - setup(name='poppy-humanoid', version=version(), packages=find_packages(), - install_requires=['pypot >= 3.2.0'], + install_requires=['pypot >= 4.0.0'], include_package_data=True, exclude_package_data={'': ['README', '.gitignore']}, zip_safe=False, - author='See https://github.com/poppy-project/poppy-humanoid/graphs/contributors', - author_email='pierre.rouanet@gmail.com', + author='Poppy Station', + author_email='dev@poppy-station.org', description='Poppy Humanoid Software Library', - url='https://github.com/poppy-project/poppy-creature', + url='https://poppy-project.org', license='GNU GENERAL PUBLIC LICENSE Version 3', - **extra )