From: Jean THOMAS Date: Tue, 16 Jun 2020 13:40:53 +0000 (+0200) Subject: Exclude contrib/ and libgram/ from package installation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=22eece223cbb69a2cb8bbe9e783881ebc9a941bf;p=gram.git Exclude contrib/ and libgram/ from package installation --- diff --git a/setup.py b/setup.py index 17b5531..a96b3ec 100755 --- a/setup.py +++ b/setup.py @@ -14,6 +14,6 @@ setup( license="BSD", python_requires="~=3.6", install_requires=["pyyaml"], - packages=find_packages(exclude=("test*", "sim*", "doc*", "examples*")), + packages=find_packages(exclude=("test*", "doc*", "examples*", "contrib*", "libgram*")), include_package_data=True, )