-
First Check
Commit to Help
Example Code- DescriptionCurrently typer cannot be installed in editable mode because flit does not support dit
I am suggesting setuptools-scm as that is easy to fix and its maintenance status is considerably better than the other ones I know. If @tiangolo has nothing against, I would be more than happy to make a PR to do it as the switch should be quite easy. Operating SystemLinux Operating System DetailsNo response Typer Versionmain branch Python Versionn/a Additional ContextNo response |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
To rephrase this issue, basically current typer packaging is discouraging contributions because it does not allow people to perform editable installs, which are the most effective way to test(experiment) changes made to a python library. |
Beta Was this translation helpful? Give feedback.
-
I use |
Beta Was this translation helpful? Give feedback.
-
I'm also using |
Beta Was this translation helpful? Give feedback.
-
With the recent refactor from Flit to PDM, it is now installable with |
Beta Was this translation helpful? Give feedback.
With the recent refactor from Flit to PDM, it is now installable with
pip
. You can dopip install -e .
, orpip install -r requirements.txt
to include the editable install and the development dependencies. 🤓 🚀