Merge pull request #234 from antmicro/exclude-test-package

setup.py: Exclude test package
This commit is contained in:
Tim Ansell 2021-06-28 07:34:05 -07:00 committed by GitHub
commit 09a42a5a8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,5 +15,5 @@ setup(
license="BSD",
python_requires="~=3.6",
include_package_data=True,
packages=find_packages(),
packages=find_packages(exclude=['test*']),
)