This commit is contained in:
2026-05-20 15:19:49 +05:00
parent f1e0d265ff
commit a64e6e57d4
11 changed files with 346 additions and 0 deletions
+15
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
''',
)