Skip to content

Commit

Permalink
Bugfix: add include_package_data=True to setup.py to resolve #2
Browse files Browse the repository at this point in the history
  • Loading branch information
barentsen committed Mar 2, 2017
1 parent e5bb154 commit 92c5f47
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,3 @@
include README.md LICENSE
include kadenza/header-templates/*

2 changes: 1 addition & 1 deletion 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"
4 changes: 2 additions & 2 deletions requirements.txt
@@ -1,2 +1,2 @@
numpy
astropy
numpy>=1.8
astropy>=1.1
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -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",
Expand Down

0 comments on commit 92c5f47

Please sign in to comment.