Skip to content
Commits on Source (5)
......@@ -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
......
......@@ -2,5 +2,6 @@ prune docs/
prune tests/
include *.txt
include *.rst
include README.md
recursive-include pywps *
global-exclude *.py[co]
pywps (4.2.1-1) unstable; urgency=medium
* New upstream release.
* Disable rollback in gbp.conf.
-- Bas Couwenberg <sebastic@debian.org> Mon, 17 Dec 2018 20:49:16 +0100
pywps (4.2.0-1) unstable; urgency=medium
* New upstream release.
......
......@@ -14,3 +14,6 @@ upstream-tag = upstream/%(version)s
# Always use pristine-tar.
pristine-tar = True
[import-orig]
rollback = False
......@@ -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')
......
......@@ -2,6 +2,7 @@ coverage
flake8
flufl.enum
pylint
Sphinx
six
jinja2
Sphinx
twine
wheel
......@@ -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',
......