Tag: poetry
-
Managing Project Dependencies with Poetry
When building Python projects, we inevitably need to work with third-party packages. Most developers start with the familiar requirements.txt approach, but this method has its pitfalls. It’s all too common to install a new package and forget to update the requirements file. Even worse, when you look at your requirements.txt, it’s hard to distinguish between…