-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add minimum python version requirement, aligning on most scientific data
packages
- Loading branch information
Showing
3 changed files
with
6 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
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 |
---|---|---|
|
@@ -32,13 +32,12 @@ | |
keywords='sentinel2, xarray, datacube, monitoring, change', | ||
author=u"Loic Dutrieux, Jonas Viehweger, Chris Holden", | ||
author_email='[email protected]', | ||
url='https://jeodpp.jrc.ec.europa.eu/apps/gitlab/use_cases/canhemon/nrt.git', | ||
url='https://github.com/ec-jrc/nrt.git', | ||
license='EUPL-v1.2', | ||
classifiers=[ | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
|
||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
], | ||
packages=find_packages(), | ||
package_data={'nrt': ['data/*.nc', 'data/*.tif', 'data/*.json']}, | ||
|
@@ -52,5 +51,6 @@ | |
'pandas', | ||
'affine' | ||
], | ||
requires-python = ">=3.9", | ||
extras_require=extra_reqs) | ||
|