Skip to content

Commit b578254

Browse files
authored
Add fix for issue in setuptools. (#1254)
1 parent dd0862a commit b578254

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

cluster_tools/pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ where = ["."]
3737
include = ["cluster_tools*"]
3838
exclude = ["cluster_tools.tests"]
3939

40+
# This is a fix for an issue in setuptools. See: https://github.com/pypa/setuptools/issues/4759
41+
# This shoulde be removed when the issue is resolved.
42+
[tool.setuptools]
43+
license-files = []
4044

4145
[tool.ruff]
4246
# Exclude a variety of commonly ignored directories.

webknossos/pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,11 @@ testpaths = ["tests"]
188188
requires = ["setuptools>=70.0", "wheel; python_version>='3.12'"]
189189
build-backend = "setuptools.build_meta"
190190

191+
# This is a fix for an issue in setuptools. See: https://github.com/pypa/setuptools/issues/4759
192+
# This shoulde be removed when the issue is resolved.
193+
[tool.setuptools]
194+
license-files = []
195+
191196
[tool.setuptools.packages.find]
192197
where = ["."]
193198
include = ["webknossos*", "webknossos/version.py"]

0 commit comments

Comments
 (0)