Skip to content

Commit

Permalink
exclude installer dir in build (#4389)
Browse files Browse the repository at this point in the history
  • Loading branch information
hawflau committed Nov 8, 2022
1 parent 4c3b4b5 commit 3db6720
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ include requirements/pre-dev.txt
include requirements/dev.txt
recursive-include samcli *
prune tests
prune installer
global-exclude *.py[cod]
global-exclude *.DS_Store
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def read_version():
author_email="aws-sam-developers@amazon.com",
url="https://github.com/awslabs/aws-sam-cli",
license="Apache License 2.0",
packages=find_packages(exclude=["tests.*", "tests"]),
packages=find_packages(exclude=["tests.*", "tests", "installer.*", "installer"]),
keywords="AWS SAM CLI",
# Support Python 3.7 or greater
python_requires=">=3.7, <=4.0, !=4.0",
Expand Down

0 comments on commit 3db6720

Please sign in to comment.