/
niceSOFT
/
python3-wheel
Обзор
Документация
Войти
/
niceSOFT
/
python3-wheel
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
0.36.2
tests/testdata/complex-dist/setup.py
21 строка
724 B
Alex Grönholm
Renamed the wheel.tool package to wheel.cli and migrated CLI stuff there
17 июл 2018, 15:02
17 июл 2018, 15:02
8949250
Код
Авторство
О чём код?
from setuptools import setup setup(name='complex-dist', version='0.1', description=u'Another testing distribution \N{SNOWMAN}', long_description=u'Another testing distribution \N{SNOWMAN}', author="Illustrious Author", author_email="illustrious@example.org", url="http://example.org/exemplary", packages=['complexdist'], setup_requires=["wheel", "setuptools"], install_requires=["quux", "splort"], extras_require={'simple': ['simple.dist']}, tests_require=["foo", "bar>=10.0.0"], entry_points={ 'console_scripts': [ 'complex-dist=complexdist:main', 'complex-dist2=complexdist:main', ], }, )