Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Daniel Scheffler
arosics
Commits
6719152a
Commit
6719152a
authored
Aug 10, 2018
by
Daniel Scheffler
Browse files
Added version.py.
parent
92340618
Pipeline
#3092
failed with stages
in 3 minutes and 30 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
arosics/__init__.py
View file @
6719152a
...
...
@@ -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'
,
...
...
arosics/version.py
0 → 100644
View file @
6719152a
__version__
=
'0.8.6'
__versionalias__
=
'2018-07-20_01'
setup.py
View file @
6719152a
...
...
@@ -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"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment