-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed requirements and added more information to setup.cfg
- Loading branch information
Showing
3 changed files
with
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
regex | ||
netCDF4 | ||
geopandas>=0.6.1 | ||
xarray | ||
dask | ||
pytileproj==0.0.12 | ||
Equi7Grid==0.0.10 | ||
git+https://github.com/TUW-GEO/veranda.git | ||
git+https://github.com/TUW-GEO/geopathfinder.git | ||
# remaining and currently not officially released requirements | ||
git+https://github.com/TUW-GEO/veranda.git@master | ||
git+https://github.com/TUW-GEO/geopathfinder.git@master | ||
|
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,26 +1,26 @@ | ||
# This file is used to configure your project. | ||
# Read more about the various options under: | ||
# http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files | ||
|
||
[metadata] | ||
name = yeoda | ||
description = Add a short description here! | ||
version = v0.1.0 | ||
description = yeoda provides lower and higher-level data cube classes to work with well-defined and well-structured earth observation data. | ||
author = TU Wien | ||
author-email = [email protected] | ||
license = mit | ||
url = https://www.geo.tuwien.ac.at/ | ||
license = MIT | ||
url = https://github.com/TUW-GEO/yeoda | ||
long-description = file: README.md | ||
# Change if running only on Windows, Mac or Linux (comma-separated) | ||
keywords= | ||
Earth Observation | ||
Remote Sensing | ||
Data Reader | ||
Data Cube | ||
platforms = any | ||
# Add here all kinds of additional classifiers as defined under | ||
|
||
# https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
|
||
classifiers = | ||
|
||
Development Status :: 4 - Beta | ||
|
||
Programming Language :: Python | ||
License :: OSI Approved :: MIT License | ||
Topic :: Scientific/Engineering | ||
Topic :: Software Development :: Version Control :: Git | ||
Programming Language :: Python :: 3.6 | ||
Natural Language :: English | ||
|
||
|
||
[options] | ||
|
@@ -33,7 +33,14 @@ package_dir = | |
setup_requires = pyscaffold>=3.1a0,<3.2a0 | ||
# Add here dependencies of your project (semicolon/line-separated), e.g. | ||
|
||
# install_requires = numpy; scipy | ||
install_requires = | ||
regex | ||
netCDF4 | ||
geopandas>=0.6.1 | ||
xarray | ||
dask | ||
pytileproj==0.0.12 | ||
Equi7Grid==0.0.10 | ||
|
||
# The usage of test_requires is discouraged, see `Dependency Management` docs | ||
# tests_require = pytest; pytest-cov | ||
|