Skip to content

Commit 97ca504

Browse files
committed
adding examples and tests dirs to distribution, bumping to 0.6.1, fixes #50
1 parent 1c978d5 commit 97ca504

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

MANIFEST.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include LICENSE.txt
2-
recursive-include tests *
2+
include tests/*
3+
include examples/*

overpass/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"""Thin wrapper around the OpenStreetMap Overpass API."""
99

1010
__title__ = "overpass"
11-
__version__ = "0.6.0"
11+
__version__ = "0.6.1"
1212
__license__ = "Apache 2.0"
1313

1414
from .api import API

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
setup(
44
name="overpass",
55
packages=["overpass"],
6-
version="0.6.0",
6+
version="0.6.1",
77
description="Python wrapper for the OpenStreetMap Overpass API",
88
long_description="See README.md",
99
author="Martijn van Exel",
@@ -17,6 +17,8 @@
1717
"Programming Language :: Python :: 3.3",
1818
"Programming Language :: Python :: 3.4",
1919
"Programming Language :: Python :: 3.5",
20+
"Programming Language :: Python :: 3.6",
21+
"Programming Language :: Python :: 3.7",
2022
"Topic :: Scientific/Engineering :: GIS",
2123
"Topic :: Utilities",
2224
],

0 commit comments

Comments
 (0)