Closed jakethekoenig closed 9 months ago
is that standard? feels like there's always a requirements.txt for a python project?
is that standard? feels like there's always a requirements.txt for a python project?
Yeah it feels weird to me but I think it is standard when using poetry. I haven't used poetry myself before. Looks like black does it this way. There are ways to dynamically import a requirements.txt into the toml but they look janky and non-standard to me. We certainly don't want the dependencies listed in two places.
Ok after we discussed I'm on board with requirements.txt
This project is installed from the pyproject.toml which doesn't reference the requirements.txt. We should probably either dynamically import the
requirements.txt
or delete it and only store the dependencies in the pyproject.toml. I favor deleting the requirements.txt.