From 8598b54ab1f15d9f212eb147bf76fb99ee6a5ff9 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Mon, 27 Jul 2020 22:39:27 -0400 Subject: [PATCH] Add aiohttp extras --- setup.py | 3 +++ tox.ini | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/setup.py b/setup.py index 2aa43a52..10e2653d 100644 --- a/setup.py +++ b/setup.py @@ -67,6 +67,9 @@ setup(name='dependency-injector', 'flask': [ 'flask', ], + 'aiohttp': [ + 'aiohttp', + ], }, zip_safe=True, license='BSD New', diff --git a/tox.ini b/tox.ini index b64be5f1..27bacf45 100644 --- a/tox.ini +++ b/tox.ini @@ -8,6 +8,7 @@ deps= extras= yaml flask + aiohttp commands= unit2 discover -s tests/unit -p test_*_py3*.py @@ -27,6 +28,9 @@ commands= coveralls [testenv:py27] +extras= + yaml + flask commands= unit2 discover -s tests/unit -p test_*_py2_py3.py