From 3d568ab834be7cf5fa1c1e75bea3b39d5e5d887a Mon Sep 17 00:00:00 2001 From: Andrey Kolpakov Date: Wed, 8 May 2019 11:20:32 +0200 Subject: [PATCH 1/2] add aiohttp to dependensies --- setup.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 03687e0..65edbc5 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,10 @@ version_path = os.path.join(here, 'onvif/version.txt') version = open(version_path).read().strip() -requires = ['zeep[async] >= 3.0.0'] +requires = [ + 'zeep[async]>=3.0.0', + 'aiohttp>=1' +] CLASSIFIERS = [ 'Development Status :: 3 - Alpha', @@ -49,6 +52,6 @@ include_package_data=True, data_files=[(wsdl_dst_dir, wsdl_files)], entry_points={ - 'console_scripts': ['onvif-cli = onvif.cli:main'] - } - ) + 'console_scripts': ['onvif-cli = onvif.cli:main'] + } + ) From 59fa5d476eaebfd42a5478a345b377a59dc2dc71 Mon Sep 17 00:00:00 2001 From: Andrey Kolpakov Date: Wed, 8 May 2019 11:43:57 +0200 Subject: [PATCH 2/2] add aiohttp to dependensies --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 65edbc5..7908f48 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ requires = [ 'zeep[async]>=3.0.0', - 'aiohttp>=1' + 'aiohttp>=1.0' ] CLASSIFIERS = [