Initial commit of the bbuilder code and README
This commit is contained in:
21
setup.py
Normal file
21
setup.py
Normal 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',
|
||||
],
|
||||
},
|
||||
)
|
Reference in New Issue
Block a user