-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix History. * Fix README.rst * Description still getting rejected. * Ready for 1.8.5 Co-authored-by: phaesler <[email protected]>
- Loading branch information
1 parent
6db18aa
commit a46939f
Showing
4 changed files
with
86 additions
and
20 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
try: | ||
from ._version import version as __version__ | ||
except ImportError: | ||
__version__ = "1.8.4+?" | ||
__version__ = "1.8.5+?" |
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 |
---|---|---|
|
@@ -3,12 +3,6 @@ | |
|
||
from setuptools import setup, find_packages | ||
|
||
with open('README.rst') as readme_file: | ||
readme = readme_file.read() | ||
|
||
with open('HISTORY.rst') as history_file: | ||
history = history_file.read() | ||
|
||
requirements = [ | ||
'datacube', | ||
'Flask', | ||
|
@@ -46,7 +40,24 @@ | |
setup( | ||
name='datacube_ows', | ||
description="Open Data Cube Open Web Services", | ||
long_description=readme + '\n\n' + history, | ||
long_description=""" | ||
============ | ||
datacube-ows | ||
============ | ||
Open Web Services for the Open Datacube. | ||
* Free software: Apache Software License 2.0 | ||
* Documentation: https://datacube-ows.readthedocs.io. | ||
Features | ||
-------- | ||
* Leverages the power of the Open Data Cube, including support for COGs on S3. | ||
* Supports WMS and WMTS. | ||
* Experimental support for WCS (1.0, 2.0, 2.1). | ||
""", | ||
author="Open Data Cube", | ||
author_email='[email protected]', | ||
url='https://github.com/opendatacube/datacube-ows', | ||
|