Add aiohttp extras

This commit is contained in:
Roman Mogylatov 2020-07-27 22:39:27 -04:00
parent 2707aa9b35
commit 8598b54ab1
2 changed files with 7 additions and 0 deletions

View File

@ -67,6 +67,9 @@ setup(name='dependency-injector',
'flask': [ 'flask': [
'flask', 'flask',
], ],
'aiohttp': [
'aiohttp',
],
}, },
zip_safe=True, zip_safe=True,
license='BSD New', license='BSD New',

View File

@ -8,6 +8,7 @@ deps=
extras= extras=
yaml yaml
flask flask
aiohttp
commands= commands=
unit2 discover -s tests/unit -p test_*_py3*.py unit2 discover -s tests/unit -p test_*_py3*.py
@ -27,6 +28,9 @@ commands=
coveralls coveralls
[testenv:py27] [testenv:py27]
extras=
yaml
flask
commands= commands=
unit2 discover -s tests/unit -p test_*_py2_py3.py unit2 discover -s tests/unit -p test_*_py2_py3.py