Skip to content

Commit 6ad4d5a

Browse files
committed
include csv files
1 parent 733819e commit 6ad4d5a

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
/.idea/
66
/__pycache__/
77
/dist/
8+
/build/
89
MANIFEST
910
cover
1011
.coverage

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include README.md
2-
include LICENSE.txt
2+
include LICENSE.txt
3+
recursive-include geosupport/function_info *

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@
2929
""",
3030
author='Ian Shiland',
3131
author_email='ishiland@gmail.com',
32-
packages=['geosupport', 'geosupport/function_info'],
32+
packages=['geosupport'],
33+
#package_data={'python-geosupport': ['geosupport/function_info/**']},
34+
include_package_data=True,
3335
license='MIT',
3436
keywords = ['NYC', 'geocoder', 'python-geosupport', 'geosupport'],
3537
classifiers=[

0 commit comments

Comments
 (0)