Exclude contrib/ and libgram/ from package installation
authorJean THOMAS <git0@pub.jeanthomas.me>
Tue, 16 Jun 2020 13:40:53 +0000 (15:40 +0200)
committerJean THOMAS <git0@pub.jeanthomas.me>
Tue, 16 Jun 2020 13:40:53 +0000 (15:40 +0200)
setup.py

index 17b553114e372ad4b2266507613596673da75340..a96b3ec67e25f6df87ca20db0cd2fdfe14aeeae8 100755 (executable)
--- 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,
 )