Skip to content

Commit c202ca1

Browse files
committed
Fix editable state installtion
1 parent 390c10d commit c202ca1

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ sphinx-rtd-theme = "0.5.1"
4141
imagecodecs = "^2021.8.26"
4242

4343
[build-system]
44-
requires = ["poetry-core>=1.0.0"]
44+
requires = ["setuptools", "poetry-core>=1.0.0"]
4545
build-backend = "poetry.core.masonry.api"
4646

4747
[tool.isort]

setup.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env python
2+
3+
import setuptools
4+
5+
if __name__ == "__main__":
6+
setuptools.setup()

0 commit comments

Comments
 (0)