diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-09-03 00:28:18 +0200 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2021-09-02 18:25:47 -0700 |
commit | 969dccc084e833331fcd26c2a12ddaf448575ab4 (patch) | |
tree | 48c5a1022409f552f8c2aa9ba7c298eec147e28e | |
parent | 557c7d2d2057e90a8c3f9f25d3f2ca2ec2bece93 (diff) | |
download | gitlab-969dccc084e833331fcd26c2a12ddaf448575ab4.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"], |