Версия №1

This commit is contained in:
GafarovaGG
2022-05-24 17:52:25 +05:00
commit b2d0495866
808 changed files with 6827 additions and 0 deletions

View File

@ -0,0 +1,15 @@
from setuptools import setup
setup(
name='bootstrap',
version='1.0.0',
py_modules=['bootstrap'],
include_package_data=True,
install_requires=[
'click', 'termcolor', 'GitPython', 'python-crontab'
],
entry_points='''
[console_scripts]
bootstrap=app.cli:cli
''',
)