Skip to content

Commit

Permalink
fix: tests.* (subpackage) exclusion from installs (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
scop authored Oct 23, 2020
1 parent a6dae2d commit 2d3ae90
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 @@ -110,7 +110,7 @@ def run(self):
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages(exclude=("tests",)),
packages=find_packages(exclude=("tests*",)),
# If your package is a single module, use this instead of "packages":
# py_modules=["mypackage"],
# entry_points={
Expand Down

0 comments on commit 2d3ae90

Please sign in to comment.