Skip to content

Commit

Permalink
fix to allow 'setup.py install' to get the right files
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Speer committed Nov 11, 2015
1 parent 6bc113b commit 372a18c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
@@ -1,2 +1,2 @@
recursive-include conceptnet5/support_data *
recursive-include conceptnet5/support_data *.*
include README.md
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -5,7 +5,7 @@
import sys

packages = find_packages()
version_str = '5.4.1'
version_str = '5.4.2'

if sys.version_info.major < 3:
langcodes_req = 'langcodes-py2 == 1.1.2'
Expand Down Expand Up @@ -39,6 +39,7 @@ def run(self):
author_email = 'conceptnet@media.mit.edu',
packages=packages,
include_package_data=True,
exclude_package_data={'conceptnet5': ['support_data/testdata']},
install_requires=[
'nltk >= 3.0b1', 'xmltodict', 'pyyaml', 'requests', 'limits',
'flask', 'flask-cors', 'flask-limiter', 'grako > 3', 'ftfy',
Expand Down

0 comments on commit 372a18c

Please sign in to comment.