From 8793841dc3ce836559ed5d4150741d64fc07d805 Mon Sep 17 00:00:00 2001 From: Brian Lange Date: Tue, 3 Nov 2015 17:39:41 -0600 Subject: [PATCH] Add include_package_data and bump version --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 214e20c..96ca8bb 100644 --- a/setup.py +++ b/setup.py @@ -3,13 +3,13 @@ from distutils.core import setup setup(name="Neighborhoodize", - version='0.9.4', + version='0.9.5', description='Utility for translating lat, long coordinates into ' 'neighborhoods in various cities', author='Brian Lange', author_email='brian.lange@datascopeanalytics.com', url='https://github.com/bjlange/neighborhoodize', - download_url='https://github.com/bjlange/neighborhoodize/releases/tag/0.9.4', + download_url='https://github.com/bjlange/neighborhoodize/releases/tag/0.9.5', packages=['neighborhoodize', ], install_requires=[ "Shapely >= 1.5.7", @@ -17,6 +17,6 @@ "fastkml >= 0.9", "fiona >= 1.6.2" ], - keywords=['neighborhood','gis','boundaries'], - classifiers = [], -) + keywords=['neighborhood', 'gis', 'boundaries'], + classifiers=[], + include_package_data=True)