-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improved setup.py for one line install. new version
- Loading branch information
1 parent
3cd157e
commit 0c5dd0e
Showing
2 changed files
with
23 additions
and
4 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Inside of setup.cfg | ||
[metadata] | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
long_description_content_type = text/markdown |
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 |
---|---|---|
|
@@ -9,13 +9,18 @@ | |
|
||
setup( | ||
name='topopyscale', | ||
version='0.1.6', | ||
version='0.1.7', | ||
description='A Python package to perform climate downscaling at the hillslope scale', | ||
long_description=long_description, | ||
|
||
# The project's main homepage. | ||
url='https://github.com/ArcticSnow/TopoPyScale', | ||
download_url = 'https://github.com/ArcticSnow/TopoPyScale/releases/latest', | ||
project_urls={ | ||
'Documentation':'https://topopyscale.readthedocs.io/en/latest/', | ||
'Source':'https://github.com/ArcticSnow/TopoPyScale', | ||
'Examples':'https://github.com/ArcticSnow/TopoPyScale_examples' | ||
}, | ||
# Author details | ||
author=['Simon Filhol', 'Joel Fiddes', 'Kristoffer Aalstad'], | ||
author_email='[email protected]', | ||
|
@@ -48,7 +53,21 @@ | |
# What does your project relate to? | ||
keywords=['climate', 'downscaling', 'meteorology', 'xarray'], | ||
packages=find_packages(), | ||
install_requires=['matplotlib', 'scikit-learn', 'pandas', 'numpy', 'netcdf4', 'h5netcdf', 'pvlib', 'topocalc', 'cdsapi', | ||
'rasterio', 'pyproj', 'dask', 'configobj', 'munch'], | ||
python_requires='>=3.8', | ||
install_requires=['xarray[complete]', | ||
'matplotlib', | ||
'scikit-learn', | ||
'pandas', | ||
'numpy', | ||
'netcdf4', | ||
'h5netcdf', | ||
'pvlib', | ||
'topocalc', | ||
'cdsapi', | ||
'rasterio', | ||
'pyproj', | ||
'dask', | ||
'configobj', | ||
'munch'], | ||
include_package_data=True | ||
) |