Skip to content

Commit

Permalink
[#79] adding required dependencies for development
Browse files Browse the repository at this point in the history
  • Loading branch information
pkdash committed Nov 21, 2024
1 parent 59168e7 commit 93c8508
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

README = (pathlib.Path(__file__).parent / "README.md").read_text()

extra_deps = ["pandas", "netCDF4", "xarray", "rasterio", "fiona"]
dev_deps = ["pytest", "pytest-xdist", "pytest-cov", "mkdocs", "mknotebooks", "mkdocstrings", "mkdocstrings-python"]

setup(
name='hsclient',
version='1.0.4',
Expand All @@ -18,7 +21,8 @@
"xarray": ["netCDF4", "xarray"],
"rasterio": ["rasterio"],
"fiona": ["fiona"],
"all": ["pandas", "netCDF4", "xarray", "rasterio", "fiona"],
"all": extra_deps,
"dev": extra_deps + dev_deps,
},
url='https://github.com/hydroshare/hsclient',
license='MIT',
Expand Down

0 comments on commit 93c8508

Please sign in to comment.