setup.py not found when trying to install in editable mode #1611
Answered
by
TonyCrane
sophondetector
asked this question in
Q&A
-
when trying to install in editable mode a la the README.md, i get an error saying that the setup.py is required. i note that there does not seem to be a setup.py in the am i missing something? are contributors generally expected to write their own setup.pys? thanks |
Beta Was this translation helpful? Give feedback.
Answered by
TonyCrane
Aug 24, 2021
Replies: 1 comment 2 replies
-
Sorry about that, in some cases pip can't install a package under PEP-517 which only has |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
TonyCrane
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sorry about that, in some cases pip can't install a package under PEP-517 which only has
pyproject.toml
andsetup.cfg
in editable mode. I'll soon add backsetup.py
to fix this.Thanks for your feedback.