Skip to content

Commit

Permalink
update install packages call in setup for pip
Browse files Browse the repository at this point in the history
  • Loading branch information
crvernon committed Jul 21, 2021
1 parent 74b6f1d commit b3f54e8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cerf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
from .utils import *


__version__ = "2.0.0-beta.1"
__version__ = "2.0.0-beta.3"
18 changes: 17 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,23 @@ def get_requirements():
long_description_content_type="text/markdown",
python_requires='>=3.7.*, <4',
include_package_data=True,
install_requires=get_requirements(),
install_requires=[
'numpy~=1.19.4',
'pandas~=1.1.4',
'rasterio~=1.2.3',
'xarray~=0.16.1',
'PyYAML~=5.4.1',
'requests~=2.25.1',
'joblib~=1.0.1',
'matplotlib~=3.3.3',
'seaborn~=0.11.1',
'whitebox~=1.5.1',
'fiona~=1.8.19',
'pyproj~=3.0.1',
'rtree~=0.9.7',
'shapely~=1.7.1',
'geopandas~=0.9.0'
],
extras_require={
'dev': [
'build~=0.5.1',
Expand Down

0 comments on commit b3f54e8

Please sign in to comment.