Skip to content

Commit

Permalink
fix missing package data
Browse files Browse the repository at this point in the history
  • Loading branch information
Chi Chen committed May 28, 2021
1 parent 2948799 commit 9413de3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include *.rst LICENSE *.cfg ez_setup.py VERSION
recursive-include matgendb *
recursive-include pymatgen *
recursive-include scripts *
prune */*/tests
prune */*/*/tests
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
extras_require={
'tests': 'mongomock'
},
package_data={"matgendb": ["*.json"]},
package_data={"pymatgen": ["db/*.json"]},
include_package_data=True,
author="Shyue Ping Ong, Dan Gunter",
author_email="shyuep@gmail.com",
maintainer="Dan Gunter",
Expand Down Expand Up @@ -47,4 +48,4 @@
],
scripts=[os.path.join("scripts", f) for f in os.listdir("scripts")
if not os.path.isdir(os.path.join("scripts", f))]
)
)
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python

"""
Deployment file to facilitate releases of matgendb.
Deployment file to facilitate releases of pymatgen-db.
"""

from __future__ import division
Expand Down

0 comments on commit 9413de3

Please sign in to comment.