From 97ca50421516c1895d82d308f4d4b377b871bd26 Mon Sep 17 00:00:00 2001 From: Martijn van Exel Date: Wed, 29 Aug 2018 21:31:30 -0600 Subject: [PATCH] adding examples and tests dirs to distribution, bumping to 0.6.1, fixes #50 --- MANIFEST.in | 3 ++- overpass/__init__.py | 2 +- setup.py | 4 +++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 9e580cae749..fa788c141ce 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include LICENSE.txt -recursive-include tests * \ No newline at end of file +include tests/* +include examples/* \ No newline at end of file diff --git a/overpass/__init__.py b/overpass/__init__.py index 444d493aa6e..087bcfba23b 100644 --- a/overpass/__init__.py +++ b/overpass/__init__.py @@ -8,7 +8,7 @@ """Thin wrapper around the OpenStreetMap Overpass API.""" __title__ = "overpass" -__version__ = "0.6.0" +__version__ = "0.6.1" __license__ = "Apache 2.0" from .api import API diff --git a/setup.py b/setup.py index 9035a271161..20456efc0fc 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="overpass", packages=["overpass"], - version="0.6.0", + version="0.6.1", description="Python wrapper for the OpenStreetMap Overpass API", long_description="See README.md", author="Martijn van Exel", @@ -17,6 +17,8 @@ "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: GIS", "Topic :: Utilities", ],