update requirements

This commit is contained in:
pycook 2023-07-12 15:32:46 +08:00
parent 3e51f89c5a
commit 1861d24593
2 changed files with 81 additions and 42 deletions

View File

@ -1,40 +1,80 @@
-i https://mirrors.aliyun.com/pypi/simple
# Flask
Flask == 1.0.3
Werkzeug >= 0.15.5
click >= 5.0
# Api
Flask-RESTful == 0.3.7
# Database
Flask-SQLAlchemy == 2.4.0
SQLAlchemy == 1.3.5
PyMySQL == 0.9.3
redis == 3.2.1
# Migrations
Flask-Migrate == 2.5.2
# Deployment
gevent == 1.4.0
gunicorn == 19.5.0
supervisor == 4.0.3
# Auth
Flask-Login == 0.4.1
Flask-Bcrypt == 0.7.1
Flask-Cors >= 3.0.8
python-ldap == 3.2.0
# Caching
Flask-Caching >= 1.0.0
# Environment variable parsing
environs == 4.2.0
marshmallow == 2.20.2
# async tasks
celery == 4.3.0
more-itertools == 5.0.0
kombu == 4.4.0
# other
six == 1.12.0
bs4 >= 0.0.1
toposort >= 1.5
requests >= 2.22.0
PyJWT >= 1.7.1
elasticsearch == 7.0.4
future == 0.18.2
alembic==1.7.7
amqp==2.6.1
aniso8601==9.0.1
APScheduler==3.10.1
attrs==23.1.0
backports.zoneinfo==0.2.1
bcrypt==4.0.1
beautifulsoup4==4.12.2
billiard==3.6.4.0
bs4==0.0.1
cachelib==0.9.0
celery==4.3.0
celery-once==3.0.1
certifi==2023.5.7
charset-normalizer==3.1.0
click==8.1.3
dnspython==2.3.0
elasticsearch==7.17.9
email-validator==1.3.1
environs==4.2.0
flasgger==0.9.5
Flask==1.0.3
Flask-APScheduler==1.12.4
Flask-Bcrypt==0.7.1
Flask-Caching==2.0.2
Flask-Cors==4.0.0
Flask-Login==0.4.1
Flask-Migrate==2.5.2
Flask-RESTful==0.3.7
Flask-SQLAlchemy==2.4.0
future==0.18.2
gunicorn==19.5.0
idna==3.4
importlib-metadata==6.8.0
importlib-resources==6.0.0
itsdangerous==2.0.1
Jinja2==3.0.1
jinja2schema==0.1.4
jsonschema==4.18.0
jsonschema-specifications==2023.6.1
kombu==4.4.0
Mako==1.2.4
MarkupSafe==2.1.3
marshmallow==2.20.2
meld3==2.0.1
mistune==3.0.1
more-itertools==5.0.0
msgpack-python==0.5.6
numpy==1.18.5
pandas==1.3.2
Pillow==8.3.2
pkgutil_resolve_name==1.3.10
pyasn1==0.5.0
pyasn1-modules==0.3.0
pycryptodome==3.12.0
PyJWT==2.7.0
PyMySQL==0.9.3
python-dateutil==2.8.2
python-dotenv==1.0.0
python-ldap==3.2.0
pytz==2023.3
PyYAML==6.0
redis==3.2.1
referencing==0.29.1
requests==2.31.0
rpds-py==0.8.8
six==1.12.0
soupsieve==2.4.1
SQLAlchemy==1.3.5
supervisor==4.0.3
timeout-decorator==0.5.0
toposort==1.10
treelib==1.6.1
tzlocal==5.0.1
urllib3==1.26.16
vine==1.3.0
Werkzeug==0.15.5
WTForms==3.0.0
zipp==3.16.0

View File

@ -18,7 +18,6 @@ BCRYPT_LOG_ROUNDS = env.int("BCRYPT_LOG_ROUNDS", default=13)
DEBUG_TB_ENABLED = DEBUG
DEBUG_TB_INTERCEPT_REDIRECTS = False
ERROR_CODES = [400, 401, 403, 404, 405, 500, 502]
# # database
@ -43,7 +42,6 @@ CACHE_DEFAULT_TIMEOUT = 3000
LOG_PATH = './logs/app.log'
LOG_LEVEL = 'DEBUG'
# # mail
MAIL_SERVER = ''
MAIL_PORT = 25
@ -90,5 +88,6 @@ USE_ACL = False
ES_HOST = '127.0.0.1'
USE_ES = False
BOOL_TRUE = ['true', 'TRUE', 'True', True, '1', 1, "Yes", "YES", "yes", 'Y', 'y']
CMDB_API = "http://127.0.0.1:5000/api/v0.1"