summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNejc Habjan <hab.nejc@gmail.com>2021-09-03 00:28:18 +0200
committerNejc Habjan <hab.nejc@gmail.com>2021-09-03 00:42:15 +0200
commitfe0dca2b594b2f1570d3a7d87f1684b774918cdd (patch)
tree48c5a1022409f552f8c2aa9ba7c298eec147e28e
parent557c7d2d2057e90a8c3f9f25d3f2ca2ec2bece93 (diff)
downloadgitlab-fe0dca2b594b2f1570d3a7d87f1684b774918cdd.tar.gz
fix(build): do not package tests in wheel
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 6a05a72..589f9a4 100644
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ setup(
author_email="gauvain@pocentek.net",
license="LGPLv3",
url="https://github.com/python-gitlab/python-gitlab",
- packages=find_packages(),
+ packages=find_packages(exclude=["tests*"]),
install_requires=["requests>=2.25.0", "requests-toolbelt>=0.9.1"],
package_data={
"gitlab": ["py.typed"],