Skip to content

Commit f2a9971

Browse files
committed
Fix incorrectly configured pyproject.toml.
1 parent 368e6c1 commit f2a9971

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pyproject.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=42", "wheel"]
2+
requires = ["setuptools"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
@@ -30,8 +30,9 @@ classifiers = [
3030
test = ["tox"]
3131

3232
[tool.setuptools.packages.find]
33-
where = ["conllu"]
33+
where = ["."]
3434
include = ["conllu"]
35+
namespaces = false
3536

3637
[tool.setuptools.package-data]
3738
"conllu" = ["py.typed"]
@@ -40,6 +41,7 @@ include = ["conllu"]
4041
markers = [
4142
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')",
4243
]
44+
4345
[tool.flake8]
4446
ignore = "E302, W503"
4547
max-line-length = 119

0 commit comments

Comments
 (0)