Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Daniel Scheffler
py_tools_ds
Commits
769c9c73
Commit
769c9c73
authored
Dec 03, 2018
by
Daniel Scheffler
Browse files
Added version file. Updated version info.
parent
3df1238f
Pipeline
#3309
failed with stages
in 57 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
py_tools_ds/__init__.py
View file @
769c9c73
# -*- coding: utf-8 -*-
from
__future__
import
(
division
,
print_function
,
absolute_import
,
unicode_literals
)
from
.version
import
__version__
,
__versionalias__
__version__
=
'0.13.1'
__versionalias__
=
'20171206_02'
__author__
=
'Daniel Scheffler'
# Validate GDAL version
...
...
py_tools_ds/version.py
0 → 100644
View file @
769c9c73
__version__
=
'0.13.2'
__versionalias__
=
'20181203_01'
setup.py
View file @
769c9c73
...
...
@@ -11,6 +11,10 @@ with open('README.rst') as readme_file:
with
open
(
'HISTORY.rst'
)
as
history_file
:
history
=
history_file
.
read
()
version
=
{}
with
open
(
"py_tools_ds/version.py"
)
as
version_file
:
exec
(
version_file
.
read
(),
version
)
requirements
=
[
'gdal'
,
'numpy'
,
'shapely'
,
'six'
,
'rasterio'
,
'pandas'
,
'geopandas'
,
'scikit-image'
,
'pyproj'
,
'spectral'
]
setup_requirements
=
[]
# TODO(danschef): put setup requirements (distutils extensions, etc.) here
...
...
@@ -18,7 +22,7 @@ test_requirements = requirements + ["coverage", "nose", "nose2", "nose-htmloutpu
setup
(
name
=
'py_tools_ds'
,
version
=
'0.13.1'
,
version
=
version
[
'__version__'
]
,
description
=
"A collection of Python tools by Daniel Scheffler."
,
long_description
=
readme
+
'
\n\n
'
+
history
,
author
=
"Daniel Scheffler"
,
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment