Skip to content

Commit 307ef9c

Browse files
Merge pull request #1855 from cornellius-gp/no_tests_in_package
Do not include tests in package
2 parents 70eb9f9 + 6b1279e commit 307ef9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def find_version(*file_paths):
5353
},
5454
license="MIT",
5555
classifiers=["Development Status :: 4 - Beta", "Programming Language :: Python :: 3"],
56-
packages=find_packages(),
56+
packages=find_packages(exclude=["test", "test.*"]),
5757
python_requires=">=3.6",
5858
install_requires=install_requires,
5959
extras_require={

0 commit comments

Comments
 (0)