Skip to content
Snippets Groups Projects
Commit 6719152a authored by Daniel Scheffler's avatar Daniel Scheffler
Browse files

Added version.py.

parent 92340618
No related branches found
No related tags found
No related merge requests found
Pipeline #3092 failed
......@@ -10,10 +10,11 @@ from arosics.CoReg_local import COREG_LOCAL
from arosics.DeShifter import DESHIFTER
from arosics.Tie_Point_Grid import Tie_Point_Grid
from .version import __version__, __versionalias__ # noqa (E402 + F401)
__author__ = """Daniel Scheffler"""
__email__ = 'daniel.scheffler@gfz-potsdam.de'
__version__ = '0.8.6'
__versionalias__ = '2018-07-20_01'
__all__ = ['COREG',
'COREG_LOCAL',
'DESHIFTER',
......
__version__ = '0.8.6'
__versionalias__ = '2018-07-20_01'
......@@ -13,6 +13,10 @@ with open('README.rst') as readme_file:
with open('HISTORY.rst') as history_file:
history = history_file.read()
version = {}
with open("arosics/version.py") as version_file:
exec(version_file.read(), version)
requirements = ['numpy', 'gdal', 'shapely', 'scikit-image', 'matplotlib', 'geopandas', 'geoarray>=0.6.16',
'py_tools_ds>=0.12.1', 'plotly', 'cmocean', 'six',
# 'pykrige' # conda install --yes -c conda-forge pykrige
......@@ -28,7 +32,7 @@ test_requirements = requirements + ['coverage', 'nose', 'nose-htmloutput', 'redn
setup(
name='arosics',
version='0.8.6',
version=version['__version__'],
description="An Automated and Robust Open-Source Image Co-Registration Software for Multi-Sensor Satellite Data",
long_description=readme + '\n\n' + history,
author="Daniel Scheffler",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment