Skip to content

Commit

Permalink
add matplotlib as req
Browse files Browse the repository at this point in the history
  • Loading branch information
crvernon committed May 29, 2024
1 parent 427c346 commit d128922
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ requests>=2.20.0
gcamreader>=1.2.5
xarray>=0.20.2
netcdf4>=1.6.4
matplotlib>=3.4.2
19 changes: 11 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,16 @@ def readme():
description='A land use land cover change disaggregation model',
long_description=readme(),
long_description_content_type="text/markdown",
install_requires=['configobj>=5.0.6',
'numpy>=1.20.3',
'pandas>=1.2.4',
'scipy>=1.6.3',
'requests>=2.20.0',
'gcamreader>=1.2.5',
'xarray>= 0.20.2',
'netcdf4>= 1.6.4'],
install_requires=[
'configobj>=5.0.6',
'numpy>=1.20.3',
'pandas>=1.2.4',
'scipy>=1.6.3',
'requests>=2.20.0',
'gcamreader>=1.2.5',
'xarray>= 0.20.2',
'netcdf4>= 1.6.4',
'matplotlib>=3.4.2',
],
include_package_data=True
)

0 comments on commit d128922

Please sign in to comment.