uv package manager, which is an extremely fast Python package and project manager, written in Rust..Once you have uv installed, you can create a new project in minutes:
uv init example
cd example
uv add ruff
uv add pytest --dev
uv run ruff check
uv run pytest
uv lock
uv sync
That's it!
You can now start writing your python code 🚀