Poetry
Poetry @ https://python-poetry.org/ basically replaces pip, and gives you a maintainable way to track packages. It also makes it trivial to publish to PyPI.
Reinstalling dependencies
poetry lock -n && poetry export --without-hashes > requirements.txt
poetry install -nPublishing
poetry publish --build --username <USERNAME> --password <PASSWORD>poetry publish --build --username ezipe --password R...Other useful commands
Last updated