/
niceSOFT
/
python3-wheel
Обзор
Документация
Войти
/
niceSOFT
/
python3-wheel
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
0.41.0
tests/testdata/complex-dist/setup.py
24 строки
723 B
Henry Schreiner
Added pyupgrade and flake8-bugbear to pre-commit config (#432)
30 дек 2021, 22:45
Не верифицирован
30 дек 2021, 22:45
ad29512
Код
Авторство
О чём код?
from __future__ import annotations from setuptools import setup setup( name="complex-dist", version="0.1", description="Another testing distribution \N{SNOWMAN}", long_description="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", ], }, )