Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
arosics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Daniel Scheffler
arosics
Commits
6719152a
Commit
6719152a
authored
6 years ago
by
Daniel Scheffler
Browse files
Options
Downloads
Patches
Plain Diff
Added version.py.
parent
92340618
No related branches found
No related tags found
No related merge requests found
Pipeline
#3092
failed
6 years ago
Stage: test
Stage: cleanup
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
arosics/__init__.py
+3
-2
3 additions, 2 deletions
arosics/__init__.py
arosics/version.py
+2
-0
2 additions, 0 deletions
arosics/version.py
setup.py
+5
-1
5 additions, 1 deletion
setup.py
with
10 additions
and
3 deletions
arosics/__init__.py
+
3
−
2
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
'
,
...
...
This diff is collapsed.
Click to expand it.
arosics/version.py
0 → 100644
+
2
−
0
View file @
6719152a
__version__
=
'
0.8.6
'
__versionalias__
=
'
2018-07-20_01
'
This diff is collapsed.
Click to expand it.
setup.py
+
5
−
1
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
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment