-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pyproject.toml
: use dynamic dependencies (#38)
* pyproject.toml: use dynamic dependencies + requirements.txt: - move the packaging related dependencies into tests/requirements.txt file - remove `matplotlib` as it's only used in the obsolete functions in utils.py, which is not used at all + pyproject.toml: - use dynamic files for dependencies and optional dependencies, to avoid duplicating the list of dependencies, to be consistent with mintpy - use dynamic files for readme as well * tests/requirements.txt: add matplotlib
- Loading branch information
Showing
4 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,7 @@ | ||
# for running | ||
cdsapi>=0.7.0 | ||
matplotlib | ||
numpy | ||
pygrib | ||
scipy | ||
urllib3 | ||
#netcdf4 #for MERRA, which is currently not supported | ||
#pyhdf #for MERRA, which is currently not supported | ||
# for packaging and installation | ||
pip | ||
setuptools | ||
setuptools_scm | ||
wheel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
matplotlib | ||
pip | ||
setuptools | ||
setuptools_scm | ||
wheel |