From 6b5460cfaed3ce200493e62adfc2e638c8d7f6a8 Mon Sep 17 00:00:00 2001 From: Lukas Eller Date: Wed, 21 Apr 2021 09:15:26 +0200 Subject: [PATCH] added aiohttp as a dependency --- requirements.txt | 1 + setup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 9c58bfa..a027b10 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,4 @@ pytest>=6.2.2 overpy>=0.4 geopandas>=0.8.1 cartopy>=0.18.0 +aiohttp>=3.7.4 diff --git a/setup.py b/setup.py index 5a134d1..9097b8b 100644 --- a/setup.py +++ b/setup.py @@ -19,9 +19,9 @@ setup( author_email="lukas.eller@tuwien.ac.at", license="MIT", classifiers=[ - "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", ], packages=["measprocess"], include_package_data=True, - install_requires=["pandas", "matplotlib", "geopandas", "overpy", "shapely", "numpy", "tqdm", "cartopy"], + install_requires=["pandas", "matplotlib", "geopandas", "overpy", "shapely", "numpy", "tqdm", "cartopy", "aiohttp"], ) -- 2.22.0