[Git][debian-gis-team/pywps][upstream] New upstream version 4.2.1
Bas Couwenberg
gitlab at salsa.debian.org
Mon Dec 17 19:55:18 GMT 2018
Bas Couwenberg pushed to branch upstream at Debian GIS Project / pywps
Commits:
e26b3f21 by Bas Couwenberg at 2018-12-17T19:46:55Z
New upstream version 4.2.1
- - - - -
8 changed files:
- .travis.yml
- MANIFEST.in
- VERSION.txt
- debian/changelog
- pywps/__init__.py
- requirements-dev.txt
- requirements.txt
- setup.py
Changes:
=====================================
.travis.yml
=====================================
@@ -17,6 +17,10 @@ addons:
packages:
- gdal-bin
- libgdal-dev
+ - devscripts
+ - fakeroot
+ - debhelper
+ - python-setuptools
# Handle Git submodules yourself
git:
@@ -37,6 +41,7 @@ script:
after_success:
- coveralls
+ - python setup.py sdist bdist_wheel --universal
- debuild -b -uc -us
# whitelist
=====================================
MANIFEST.in
=====================================
@@ -2,5 +2,6 @@ prune docs/
prune tests/
include *.txt
include *.rst
+include README.md
recursive-include pywps *
global-exclude *.py[co]
=====================================
VERSION.txt
=====================================
@@ -1 +1 @@
-4.2.0
+4.2.1
=====================================
debian/changelog
=====================================
@@ -1,3 +1,9 @@
+pywps (4.2.1) trusty; urgency=medium
+
+ * updated build/packaging fixes
+
+ -- Tom Kralidis <tomkralidis at gmail.com> Mon, 17 Dec 2018 15:47:32 +0000
+
pywps (4.2.0) trusty; urgency=medium
* Jinja2 templates for output generation
=====================================
pywps/__init__.py
=====================================
@@ -9,7 +9,7 @@ import os
from lxml.builder import ElementMaker
-__version__ = '4.2.0'
+__version__ = '4.2.1'
LOGGER = logging.getLogger('PYWPS')
LOGGER.debug('setting core variables')
=====================================
requirements-dev.txt
=====================================
@@ -2,6 +2,7 @@ coverage
flake8
flufl.enum
pylint
-Sphinx
six
-jinja2
+Sphinx
+twine
+wheel
=====================================
requirements.txt
=====================================
@@ -1,9 +1,10 @@
-owslib
+flufl.enum
+jinja2
jsonschema
lxml
-werkzeug
-SQLAlchemy
+owslib
+pathlib
python-dateutil
requests
-jinja2
-pathlib
\ No newline at end of file
+SQLAlchemy
+werkzeug
=====================================
setup.py
=====================================
@@ -19,6 +19,9 @@ DESCRIPTION = ('PyWPS is an implementation of the Web Processing Service '
'standard from the Open Geospatial Consortium. PyWPS is '
'written in Python.')
+with open('README.md') as ff:
+ LONG_DESCRIPTION = ff.read()
+
KEYWORDS = 'PyWPS WPS OGC processing'
with open('requirements.txt') as f:
@@ -28,6 +31,7 @@ CONFIG = {
'name': 'pywps',
'version': VERSION,
'description': DESCRIPTION,
+ 'long_description': LONG_DESCRIPTION,
'keywords': KEYWORDS,
'license': 'MIT',
'platforms': 'all',
View it on GitLab: https://salsa.debian.org/debian-gis-team/pywps/commit/e26b3f211280c2b4e7af8e8117e6a84704951deb
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/pywps/commit/e26b3f211280c2b4e7af8e8117e6a84704951deb
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20181217/7aca1a7c/attachment-0001.html>
More information about the Pkg-grass-devel
mailing list