Motivation
- In Python's ecosystem there is no de facto standard package manager, like Cargo for Rust or Go Modules for Go. That's a problem because when you choose a package manager for your Python project you force all the other mantainers to use the same one, with all its strange gimmicks. That's why
pspmis designed in a way that if you don't want it, you can just not use it. - You don't need a package manager. Python is there since 1991 and just in 2018-2020 those famous package managers like
poetry,pdmwere created. What you really need is a way of locking your dependencies and for that that are awesome tools like pip-tools and uv. In fact,pspmis just a wrapper for runninguvcommands but you could as well run those commands mannualy or withpre-commit,CI.
Since you are here, you might as well watch this video from Anthony, creator of pre-commit, pytest, and others. This page is highly inspired by his video.