Initial commit of the bbuilder code and README

This commit is contained in:
2021-10-30 23:52:24 -04:00
parent 0020f31441
commit 9a1f5c6b6d
7 changed files with 424 additions and 0 deletions

21
setup.py Normal file
View File

@ -0,0 +1,21 @@
from setuptools import setup
setup(
name='bbuilder',
version='0.0.1',
packages=['bbuilder', 'bbuilder.lib'],
install_requires=[
'Click',
'PyYAML',
'lxml',
'colorama',
'requests',
'requests-toolbelt',
'flask'
],
entry_points={
'console_scripts': [
'bbuilder = bbuilder.bbuilder:cli',
],
},
)