Update setup.py, tox and dev requirements

This commit is contained in:
Roman Mogylatov 2021-02-02 18:06:12 -05:00
parent 0e278b604b
commit 7b52277972
3 changed files with 8 additions and 0 deletions

View File

@ -10,5 +10,6 @@ mypy
pyyaml pyyaml
httpx httpx
fastapi fastapi
pydantic
-r requirements-ext.txt -r requirements-ext.txt

View File

@ -64,6 +64,9 @@ setup(name='dependency-injector',
'yaml': [ 'yaml': [
'pyyaml', 'pyyaml',
], ],
'pydantic': [
'pydantic',
],
'flask': [ 'flask': [
'flask', 'flask',
], ],

View File

@ -11,6 +11,7 @@ deps=
fastapi fastapi
extras= extras=
yaml yaml
pydantic
flask flask
aiohttp aiohttp
commands= commands=
@ -36,6 +37,7 @@ deps=
unittest2 unittest2
extras= extras=
yaml yaml
pydantic
flask flask
commands= commands=
unit2 discover -s tests/unit -p test_*_py2_py3.py unit2 discover -s tests/unit -p test_*_py2_py3.py
@ -53,6 +55,7 @@ deps=
unittest2 unittest2
extras= extras=
yaml yaml
pydantic
flask flask
commands= commands=
unit2 discover -s tests/unit -p test_*_py3.py unit2 discover -s tests/unit -p test_*_py3.py
@ -62,6 +65,7 @@ deps=
unittest2 unittest2
extras= extras=
yaml yaml
pydantic
flask flask
commands= commands=
unit2 discover -s tests/unit -p test_*_py2_py3.py unit2 discover -s tests/unit -p test_*_py2_py3.py