Skip to content

Commit

Permalink
Merge pull request #275 from choderalab/spot303
Browse files Browse the repository at this point in the history
Fix for missing _pymbar.c file from PyPi Tarball
  • Loading branch information
Lnaden committed Sep 6, 2017
2 parents ac648e6 + e05c357 commit 095b746
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

##########################
VERSION = "3.0.3"
ISRELEASED = False
ISRELEASED = True
__version__ = VERSION
##########################

Expand Down Expand Up @@ -105,7 +105,7 @@ def buildKeywordDictionary():
setupKeywords["package_dir"] = {'pymbar' : 'pymbar', 'pymbar.tests' : 'pymbar/tests'}
setupKeywords["zip_safe"] = False
#setupKeywords["py_modules"] = ["pymbar", "timeseries", "testsystems", "confidenceintervals"]
setupKeywords["data_files"] = []
setupKeywords["data_files"] = [('pymbar', ["pymbar/_pymbar.c"])] # Ensures the _pymbar.c files are shipped regardless of Py Version
setupKeywords["ext_modules"] = [CMBAR] if six.PY2 else []
# setupKeywords["test_suite"] = "tests" # requires we migrate to setuptools
setupKeywords["platforms"] = ["Linux", "Mac OS X", "Windows"]
Expand Down

0 comments on commit 095b746

Please sign in to comment.