/
pashkatrick
/
tomato-timer
Обзор
Документация
Войти
/
pashkatrick
/
tomato-timer
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
setup.py
41 строка
1 KB
Yudin Pavel
back to stbl
01 фев 2021, 17:31
01 фев 2021, 17:31
b82d46a
Код
Авторство
О чём код?
#!/usr/bin/env python from setuptools import setup, find_packages from os import path this_directory = path.abspath(path.dirname(__file__)) with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: long_description = f.read() description = "Tomato Timer is a simple command line pomodoro app" version = "1.0.4" setup( name="tomato-timer", version=version, author="pashkatrick", author_email="me@pshktrck.ru", description=description, long_description=long_description, long_description_content_type='text/markdown', license="MIT", keywords="pomodoro tomato tomato-timer terminal terminal-app pomodoro-timer", url="https://github.com/pashkatrick/tomato-timer", classifiers=['Intended Audience :: Science/Research', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', "Programming Language :: Python", 'Topic :: Software Development', 'Topic :: Scientific/Engineering', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Operating System :: Unix', 'Operating System :: MacOS'], platforms='any', include_package_data=True, package_data={"": ["*.md"]}, packages=find_packages(), entry_points={"console_scripts": ["tomato = tomato:main"]}, setup_requires=["wheel"], scripts=['tomato.py'] )