Skip to content

Commit

Permalink
chore: Exclude test modules in whl (#1597)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfuss committed May 19, 2020
1 parent fc18a23 commit 0aa78af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -58,7 +58,7 @@ def read_requirements(req="base.txt"):
url="https://github.com/awslabs/serverless-application-model",
license="Apache License 2.0",
# Exclude all but the code folders
packages=find_packages(exclude=("tests", "docs", "examples", "versions")),
packages=find_packages(exclude=("tests", "tests.*", "docs", "examples", "versions")),
install_requires=read_requirements("base.txt"),
include_package_data=True,
extras_require={"dev": read_requirements("dev.txt")},
Expand Down

0 comments on commit 0aa78af

Please sign in to comment.