forked from LynkerIntel/climatePy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating readme with new GPL v3 license, added Justin S to contributo…
…rs, and updated setup.py with new license
- Loading branch information
1 parent
6dc8f33
commit bca31a8
Showing
3 changed files
with
33 additions
and
25 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 |
---|---|---|
|
@@ -6,7 +6,6 @@ | |
|
||
setuptools.setup( | ||
name="climatePy", # pkg name | ||
# version="0.0.4.24", # version | ||
version='{{VERSION_PLACEHOLDER}}', | ||
author="Angus Watters, Mike Johnson", # authors | ||
author_email = "[email protected], [email protected]", | ||
|
@@ -16,14 +15,10 @@ | |
packages=setuptools.find_packages(), # python modules to install | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"License :: OSI Approved :: GNU General Public License v3.0", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires='>=3.6', # min python version required | ||
# py_modules=["climatePy"], # python package name | ||
# package_dir={'':'climatePy/src'}, # source code directory of package | ||
# package_dir={'':'src/climatePy'}, # source code directory of package | ||
# package_dir={'':'/climatePy'}, # source code directory of package | ||
install_requires=['pandas', 'pyarrow', 'geopandas', 'shapely', 'pyproj', 'rasterio', | ||
'xarray', 'rioxarray', 'rtree', | ||
'numpy', 'geogif', 'netCDF4', 'joblib'], # dependencies | ||
|