Skip to content

Commit 2b346d0

Browse files
committed
Fixed excluding docs from install
Fix the exclusion rules to use wildcards, as that is necessary to recursive exclude a directory. Otherwise, `docs/_theme` is still included.
1 parent ca564c4 commit 2b346d0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ dependencies = ['python-utils >= 3.8.1']
103103
version = { attr = 'progressbar.__about__.__version__' }
104104

105105
[tool.setuptools.packages.find]
106-
exclude = ['docs', 'tests']
106+
exclude = ['docs*', 'tests*']
107107

108108
[tool.setuptools]
109109
include-package-data = true
@@ -187,4 +187,4 @@ include= ['progressbar']
187187
exclude= ['examples']
188188
ignore= ['docs']
189189

190-
reportIncompatibleMethodOverride = false
190+
reportIncompatibleMethodOverride = false

0 commit comments

Comments
 (0)