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
py_tools_ds
Commits
7faab338
Commit
7faab338
authored
Jul 03, 2017
by
Daniel Scheffler
Browse files
Updated links within documentation. Updated setup requirements.
updated __version__ and __versionalias__
parent
46428664
Pipeline
#315
passed with stage
in 26 seconds
Changes
5
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
CONTRIBUTING.rst
View file @
7faab338
...
...
@@ -15,7 +15,7 @@ Types of Contributions
Report Bugs
~~~~~~~~~~~
Report bugs at https://git
hub.com
/danschef/py_tools_ds/issues.
Report bugs at https://git
ext.gfz-potsdam.de
/danschef/py_tools_ds/issues.
.
If you are reporting a bug, please include:
...
...
@@ -45,7 +45,7 @@ articles, and such.
Submit Feedback
~~~~~~~~~~~~~~~
The best way to send feedback is to file an issue at https://git
hub.com
/danschef/py_tools_ds/issues.
The best way to send feedback is to file an issue at https://git
ext.gfz-potsdam.de
/danschef/py_tools_ds/issues.
If you are proposing a feature:
...
...
@@ -62,7 +62,7 @@ Ready to contribute? Here's how to set up `py_tools_ds` for local development.
1. Fork the `py_tools_ds` repo on GitHub.
2. Clone your fork locally::
$ git clone
git@github.com:your_name_here
/py_tools_ds.git
$ git clone
https://gitext.gfz-potsdam.de/danschef
/py_tools_ds.git
3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development::
...
...
docs/installation.rst
View file @
7faab338
...
...
@@ -14,7 +14,7 @@ To install py_tools_ds, run this command in your terminal:
$ pip install py_tools_ds
This is the preferred method to install py_tools_ds, as it will always install the most recent stable release.
This is the preferred method to install py_tools_ds, as it will always install the most recent stable release.
If you don't have `pip`_ installed, this `Python installation guide`_ can guide
you through the process.
...
...
@@ -38,7 +38,7 @@ Or download the `tarball`_:
.. code-block:: console
$ curl -OL https://git
hub.com
/danschef/py_tools_ds/
tarball/
master
$ curl -OL https://git
ext.gfz-potsdam.de
/danschef/py_tools_ds/
repository/archive.tar.gz?ref=
master
Once you have a copy of the source, you can install it with:
...
...
@@ -47,5 +47,5 @@ Once you have a copy of the source, you can install it with:
$ python setup.py install
.. _Github repo: https://git
hub.com
/danschef/py_tools_ds
.. _tarball: https://git
hub.com
/danschef/py_tools_ds/
tarball/
master
.. _Github repo: https://git
ext.gfz-potsdam.de
/danschef/py_tools_ds
.. _tarball: https://git
ext.gfz-potsdam.de
/danschef/py_tools_ds/
repository/archive.tar.gz?ref=
master
py_tools_ds/__init__.py
View file @
7faab338
...
...
@@ -8,8 +8,8 @@ from . import similarity
from
.
import
web
from
.io.raster.GeoArray
import
GeoArray
__version__
=
'0.3.
1
'
__versionalias__
=
'20170
630
_0
2
'
__version__
=
'0.3.
2
'
__versionalias__
=
'20170
703
_0
1
'
__author__
=
'Daniel Scheffler'
# Validate GDAL version
...
...
requirements.txt
View file @
7faab338
git+https://gitext.gfz-potsdam.de/danschef/
geoarray
.git
geoarray
gdal
numpy
shapely
...
...
setup.py
View file @
7faab338
...
...
@@ -11,21 +11,20 @@ with open('README.rst') as readme_file:
with
open
(
'HISTORY.rst'
)
as
history_file
:
history
=
history_file
.
read
()
requirements
=
[
'gdal'
,
'numpy'
,
'shapely'
,
'six'
,
'rasterio'
,
'geopandas'
,]
requirements
=
[
'gdal'
,
'numpy'
,
'shapely'
,
'six'
,
'rasterio'
,
'geopandas'
,
'geoarray'
]
setup_requirements
=
[]
# TODO(danschef): put setup requirements (distutils extensions, etc.) here
test_requirements
=
requirements
+
[
'coverage'
]
setup
(
name
=
'py_tools_ds'
,
version
=
'0.3.
1
'
,
version
=
'0.3.
2
'
,
description
=
"A collection of Python tools by Daniel Scheffler."
,
long_description
=
readme
+
'
\n\n
'
+
history
,
author
=
"Daniel Scheffler"
,
author_email
=
'daniel.scheffler@gfz-potsdam.de'
,
url
=
'https://git
hub.com
/danschef/py_tools_ds'
,
url
=
'https://git
ext.gfz-potsdam.de
/danschef/py_tools_ds'
,
packages
=
find_packages
(),
# searches for packages with an __init__.py and returns them as properly formatted list
package_dir
=
{
'py_tools_ds'
:
'py_tools_ds'
},
package_dir
=
{
'py_tools_ds'
:
'py_tools_ds'
},
include_package_data
=
True
,
install_requires
=
requirements
,
license
=
"GNU General Public License v3"
,
...
...
Write
Preview
Supports
Markdown
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