Skip to content

Commit

Permalink
Include responses and requests as requirements and add for CI
Browse files Browse the repository at this point in the history
Signed-off-by: Adam.Dybbroe <a000680@c21856.ad.smhi.se>
  • Loading branch information
Adam.Dybbroe committed Sep 5, 2022
1 parent 5d4f61b commit cb9670d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions continuous_integration/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ dependencies:
- geopy
- pandas
- freezegun
- responses
- requests
- openssl
- pytz
- pytest
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

"""
"""
"""Set up the activefires-postprocessing package."""

from setuptools import setup
from setuptools import find_packages
Expand All @@ -40,10 +39,11 @@
description = 'Post-processing of and notifications on Satellite active fire detections'

requires = ['posttroll', 'netifaces', 'trollsift', 'setuptools_scm', 'pycrs',
'shapely', 'cartopy', 'pandas', 'geojson', 'fiona', 'geopy', 'matplotlib']
'shapely', 'cartopy', 'pandas', 'geojson', 'fiona', 'geopy', 'matplotlib',
'requests']
test_requires = ['mock', 'posttroll', 'trollsift', 'pycrs',
'shapely', 'cartopy', 'pandas', 'geojson', 'fiona',
'freezegun']
'freezegun', 'responses']

setup(name="activefires-pp",
description=description,
Expand Down

0 comments on commit cb9670d

Please sign in to comment.