Skip to content

Commit

Permalink
setup.py still having hard time finding package data
Browse files Browse the repository at this point in the history
  • Loading branch information
yasharw committed Feb 23, 2023
1 parent 6085b9a commit 8e29686
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
entry_points={'console_scripts':['priori = priori.priori:main']},
packages=setuptools.find_packages(
where=".",
include=['priori*']),
include=['priori*'],
exclude=["priori.tests.*", "priori.tests"]),
include_package_data=True,
package_data={"priori":["data/PathwayCommons9.All.hgnc.sif.gz"], "priori":["data/primary_intx_regulon.pkl"]},
url = 'https://github.com/ohsu-comp-bio/regulon-enrichment',
classifiers = [
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 8e29686

Please sign in to comment.