init manuals

This commit is contained in:
mirzakaeva_ns
2025-07-16 12:44:48 +05:00
commit a3d9bf8c0c
1659 changed files with 12430 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
''',
)