-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(setup.py): version chaos continues (and an up to date author list)
- Loading branch information
Showing
1 changed file
with
15 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,9 +22,9 @@ | |
"gfw-creator==0.2.2", | ||
"gitpython==3.1.20", # Maximum version for Python 3.6 support | ||
"loguru==0.6.0", | ||
"numpy==1.20.3", # Maximum version for Python 3.6 support | ||
"numpy==1.19.5", # Maximum version for Python 3.6 support | ||
"packaging==21.3", | ||
"pandas>=1.0.0", # Correct compatiability with xarray for Python 3.6 | ||
"pandas==1.1.5", # Correct compatiability with xarray for Python 3.6 | ||
"psutil==5.9.1", | ||
"pyyaml==5.1", | ||
"questionary==1.10.0", | ||
|
@@ -38,11 +38,21 @@ | |
|
||
setup_requirements = [] | ||
|
||
test_requirements = ["pyfakefs==4.6.0",] | ||
test_requirements = [ | ||
"pyfakefs==4.6.0", | ||
] | ||
|
||
setup( | ||
author="Dirk Barbi", | ||
author_email="[email protected]", | ||
author="The ESM Tools Team", | ||
author_email=[ | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
], | ||
python_requires=">=3.6, <3.10", | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
|