/
arcane
/
Athena-main
Обзор
Документация
Войти
/
arcane
/
Athena-main
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
FRST
ModeEngineLib/setup.py
28 строк
718 B
Namilskyy
0.0.11
21 окт 2024, 18:26
21 окт 2024, 18:26
7b01a4a
Код
Авторство
О чём код?
from setuptools import setup, find_packages def readme(): with open('README.md', 'r') as f: return f.read() setup( name='speedfile', version='0.0.1', author='yarik_g', author_email='example@gmail.com', description='This is the simplest module for quick work with files.', long_description=readme(), long_description_content_type='text/markdown', url='your_url', packages=find_packages(), install_requires=['requests>=2.25.1'], classifiers=[ 'Programming Language :: Python :: 3.11', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent' ], keywords='files speedfiles ', project_urls={ 'GitHub': 'your_github' }, python_requires='>=3.6' )