mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-19 13:18:26 +02:00
Fix install_requires (#523)
This commit is contained in:
parent
1d8b25dcae
commit
0c9e3c0788
2 changed files with 19 additions and 1 deletions
18
setup.py
18
setup.py
|
|
@ -77,6 +77,24 @@ setup(
|
|||
# package_dir=PACKAGE_DIRECTORIES,
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
install_requires=[
|
||||
'squeaklib==0.5.1',
|
||||
'importlib_resources',
|
||||
'argparse',
|
||||
'googleapis-common-protos',
|
||||
'grpcio',
|
||||
'grpcio-tools',
|
||||
'mypy-protobuf',
|
||||
'psycopg2',
|
||||
'requests',
|
||||
'SQLAlchemy',
|
||||
'Flask',
|
||||
'protobuf',
|
||||
'flask-login',
|
||||
'Flask-WTF',
|
||||
'flask-cors',
|
||||
'alembic',
|
||||
],
|
||||
extras_require={"test": ["pytest", "coverage"]},
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = '0.1.0'
|
||||
__version__ = '0.1.1'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue