diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-09-03 00:28:18 +0200 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2021-09-03 00:42:15 +0200 |
commit | fe0dca2b594b2f1570d3a7d87f1684b774918cdd (patch) | |
tree | 48c5a1022409f552f8c2aa9ba7c298eec147e28e | |
parent | 557c7d2d2057e90a8c3f9f25d3f2ca2ec2bece93 (diff) | |
download | gitlab-fe0dca2b594b2f1570d3a7d87f1684b774918cdd.tar.gz |
fix(build): do not package tests in wheel
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"], |