chore: update dependencies

This commit is contained in:
BryantHe 2023-08-04 10:22:19 +08:00
parent ebc84af7f7
commit a88ffe1981
1 changed files with 4 additions and 13 deletions

View File

@ -9,7 +9,7 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f:
setup(
name='chassis',
version='0.1.0',
version='0.2.0',
description='basic sdk',
long_description=long_description,
url='https://gitea.bearcatlog.com/BryantStudio/chassis',
@ -42,20 +42,10 @@ setup(
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
include_package_data=True,
install_requires=[
'environs==9.5.0',
'logstash_formatter==0.5.17',
'statsd==4.0.1',
'tenacity==8.2.2',
'cachetools==5.3.0',
'circuitbreaker==2.0.0',
'shortuuid==1.0.11',
'cryptography',
'pytest'
],
install_requires=[],
extras_require={
'nameko': ['nameko==3.0.0rc11',
'nameko-sentry==1.0.0'],
'nameko-tracer==1.4.0'],
'apiflask': ['apiflask>=1.3.1',
'gevent>=22.10.2',
'gunicorn==20.1.0'],
@ -65,5 +55,6 @@ setup(
'sqlalchemy==2.0.15',
'sqlacodegen==2.3.0',
'alembic==1.11.1'],
'mongodb': ['mongoengine==0.27.0'],
},
)