diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-10-31 13:01:34 +0100 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2021-10-31 13:01:34 +0100 |
commit | ecbcf058183ca369a48affe86243cc85585f4784 (patch) | |
tree | a227c46ec8feba575dbc2fb21db82964e1e384a9 /setup.py | |
parent | 0b53c0a260ab2ec2c5ddb12ca08bfd21a24f7a69 (diff) | |
download | gitlab-fix/docs-package-in-wheel.tar.gz |
fix(build): do not include docs in wheel packagefix/docs-package-in-wheel
Diffstat (limited to 'setup.py')
-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(exclude=["tests*"]), + packages=find_packages(exclude=["docs*", "tests*"]), install_requires=["requests>=2.25.0", "requests-toolbelt>=0.9.1"], package_data={ "gitlab": ["py.typed"], |