Skip to content

Commit

Permalink
include data files during install
Browse files Browse the repository at this point in the history
  • Loading branch information
austinorr committed Sep 13, 2021
1 parent aa8cdc2 commit 386dbcf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ classifiers =
[options]
packages = find:
package_dir =
=nereid
include_package_data = true
= nereid
# include_package_data = true
# package_data={'': ['data/*.csv']},
python_requires = >= 3.6

[options.packages.find]
where = nereid

[isort]
profile = black
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
version=version,
author=author,
author_email=author_email,
include_package_data=True,
package_data={"nereid": ["static/*", "config/*", "data/*"]},
install_requires=[
"python-dotenv>=0.14,<0.19",
"scipy>=1.5,<1.8",
Expand Down

0 comments on commit 386dbcf

Please sign in to comment.