From b47479d0cfc9af30f0afb6e7c4b7d2ec50a2041c Mon Sep 17 00:00:00 2001 From: Clemens Rudert Date: Thu, 23 Nov 2017 17:54:06 +0100 Subject: [PATCH] fix code styling, set version --- CHANGES.md | 5 +++++ pyramid_georest/__init__.py | 2 +- pyramid_georest/lib/__init__.py | 2 +- pyramid_georest/lib/database.py | 2 +- pyramid_georest/lib/description.py | 2 +- pyramid_georest/lib/renderer.py | 2 +- pyramid_georest/routes.py | 2 +- setup.py | 10 +++++----- 8 files changed, 16 insertions(+), 11 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index b9575c9..e27013c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,11 @@ Pyramid REST Changelog ====================== +## 3.0.32 + +* improve code styling +* add python 3 compatibility + ## 3.0.31 * add a commit to the configuration of the api diff --git a/pyramid_georest/__init__.py b/pyramid_georest/__init__.py index 05719ec..c0c95ed 100644 --- a/pyramid_georest/__init__.py +++ b/pyramid_georest/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2012 - 2015, GIS-Fachstelle des Amtes f�r Geoinformation des Kantons Basel-Landschaft +# Copyright (c) 2012 - 2015, GIS-Fachstelle des Amtes für Geoinformation des Kantons Basel-Landschaft # All rights reserved. # # This program is free software and completes the GeoMapFish License for the geoview.bl.ch specific diff --git a/pyramid_georest/lib/__init__.py b/pyramid_georest/lib/__init__.py index 50ac290..0a781b5 100644 --- a/pyramid_georest/lib/__init__.py +++ b/pyramid_georest/lib/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2012 - 2015, GIS-Fachstelle des Amtes f�r Geoinformation des Kantons Basel-Landschaft +# Copyright (c) 2012 - 2015, GIS-Fachstelle des Amtes für Geoinformation des Kantons Basel-Landschaft # All rights reserved. # # This program is free software and completes the GeoMapFish License for the geoview.bl.ch specific diff --git a/pyramid_georest/lib/database.py b/pyramid_georest/lib/database.py index 3f1c561..6f74508 100644 --- a/pyramid_georest/lib/database.py +++ b/pyramid_georest/lib/database.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2012 - 2016, GIS-Fachstelle des Amtes f�r Geoinformation des Kantons Basel-Landschaft +# Copyright (c) 2012 - 2016, GIS-Fachstelle des Amtes für Geoinformation des Kantons Basel-Landschaft # All rights reserved. # # This program is free software and completes the GeoMapFish License for the geoview.bl.ch specific diff --git a/pyramid_georest/lib/description.py b/pyramid_georest/lib/description.py index 4352c85..8b5ebf8 100644 --- a/pyramid_georest/lib/description.py +++ b/pyramid_georest/lib/description.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2012 - 2016, GIS-Fachstelle des Amtes f�r Geoinformation des Kantons Basel-Landschaft +# Copyright (c) 2012 - 2016, GIS-Fachstelle des Amtes für Geoinformation des Kantons Basel-Landschaft # All rights reserved. # # This program is free software and completes the GeoMapFish License for the geoview.bl.ch specific diff --git a/pyramid_georest/lib/renderer.py b/pyramid_georest/lib/renderer.py index 36d7484..9542ccc 100644 --- a/pyramid_georest/lib/renderer.py +++ b/pyramid_georest/lib/renderer.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2012 - 2015, GIS-Fachstelle des Amtes f�r Geoinformation des Kantons Basel-Landschaft +# Copyright (c) 2012 - 2015, GIS-Fachstelle des Amtes für Geoinformation des Kantons Basel-Landschaft # All rights reserved. # # This program is free software and completes the GeoMapFish License for the geoview.bl.ch specific diff --git a/pyramid_georest/routes.py b/pyramid_georest/routes.py index 0a21cdd..cb2d69f 100644 --- a/pyramid_georest/routes.py +++ b/pyramid_georest/routes.py @@ -1,6 +1,6 @@ # -*- coding: iso-8859-1 -*- -# Copyright (c) 2012 - 2015, GIS-Fachstelle des Amtes f�r Geoinformation des Kantons Basel-Landschaft +# Copyright (c) 2012 - 2015, GIS-Fachstelle des Amtes für Geoinformation des Kantons Basel-Landschaft # All rights reserved. # # This program is free software and completes the GeoMapFish License for the geoview.bl.ch specific diff --git a/setup.py b/setup.py index 1910f94..3c6e275 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2012 - 2015, GIS-Fachstelle des Amtes f�r Geoinformation des Kantons Basel-Landschaft +# Copyright (c) 2012 - 2015, GIS-Fachstelle des Amtes für Geoinformation des Kantons Basel-Landschaft # All rights reserved. # # This program is free software and completes the GeoMapFish License for the geoview.bl.ch specific @@ -49,13 +49,15 @@ setup( name='pyramid_georest', - version='3.0.31', - description='pyramid_georest, extension for pyramid web frame work to provide rest interface for sql-alchemy mappers', + version='3.0.32', + description='pyramid_georest, extension for pyramid web frame work to provide rest interface for ' + 'sql-alchemy mappers', long_description=README + '\n\n' + CHANGES, classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.6", "Framework :: Pyramid", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application" @@ -75,8 +77,6 @@ entry_points="""\ [paste.app_factory] main = pyramid_georest:main - [console_scripts] - initialize_pyramid_georest_db = pyramid_georest.scripts.initializedb:main """, )