/
avito.tech
/
pulemet
Обзор
Документация
Войти
/
avito.tech
/
pulemet
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
main
setup.py
39 строк
1 KB
Georgiy Enukidze
Remove dependencies - 1.1.0
23 ноя 2021, 16:27
23 ноя 2021, 16:27
4e7855b
Код
Авторство
О чём код?
from distutils.core import setup with open('README.rst') as f: long_description = f.read() setup( name='pulemet', version='1.1.0', license='MIT', license_files='LICENSE.txt', author='Data Science SWAT', author_email='UnitDataScienceSwat@avito.ru', description='Manage coroutine execution speed', packages=[ 'pulemet', ], install_requires=required, url='https://github.com/avito-tech/pulemet', download_url='https://github.com/avito-tech/pulemet/archive/refs/heads/main.zip', keywords=['rps', 'coroutines'], python_requires='>=3.6', include_package_data=True, long_description=long_description, long_description_content_type='text/x-rst', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Topic :: Scientific/Engineering', 'Topic :: Software Development :: Build Tools', 'Topic :: Software Development :: Libraries :: Python Modules', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3.6', 'Operating System :: MacOS', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Operating System :: Unix', 'Operating System :: OS Independent', ] )