From 92c5f4705b9d2e6526c2a09003f4440e59e91d9e Mon Sep 17 00:00:00 2001 From: Geert Barentsen Date: Wed, 1 Mar 2017 21:22:07 -0800 Subject: [PATCH] Bugfix: add `include_package_data=True` to setup.py to resolve #2 --- MANIFEST.in | 3 +++ kadenza/version.py | 2 +- requirements.txt | 4 ++-- setup.py | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..f8a6a3d --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include README.md LICENSE +include kadenza/header-templates/* + diff --git a/kadenza/version.py b/kadenza/version.py index 925767d..ae2ee54 100644 --- a/kadenza/version.py +++ b/kadenza/version.py @@ -1,3 +1,3 @@ # It is important to store the version number in a separate file # so that we can read it from setup.py without importing the package -__version__ = "2.0.0" +__version__ = "2.0.2" diff --git a/requirements.txt b/requirements.txt index a19eaff..095f9bf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -numpy -astropy \ No newline at end of file +numpy>=1.8 +astropy>=1.1 diff --git a/setup.py b/setup.py index b04a5f9..3b6a520 100644 --- a/setup.py +++ b/setup.py @@ -25,9 +25,10 @@ author_email='hello@geert.io', license='MIT', packages=['kadenza'], - install_requires=['numpy', + install_requires=['numpy>=1.8', 'astropy>=1.1'], entry_points=entry_points, + include_package_data=True, classifiers=[ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License",