Skip to content

Commit

Permalink
remove exclude arg from call to find_packages in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
NickleDave committed May 5, 2019
1 parent 0040506 commit 2c36d04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def run(self):
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages(where="src", exclude=('tests',)),
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={'': ['*.csv', '*.json', '*.mat']}, # files types to install
# scripts=['src/bin/crowsetta-cli.py'],
Expand Down

0 comments on commit 2c36d04

Please sign in to comment.