#pyprojecttoml

[ follow ]
#python
Python
fromReuven Lerner
1 week ago

You're probably using uv wrong

Use uv via its project model to manage environments, Python versions, and dependencies rather than substituting it for pip or installing packages globally.
fromCaktusgroup
2 weeks ago

How to migrate from pip-tools to uv | Caktus Group

At Caktus, many of our projects use pip-tools for dependency management. Following Tobias' post How to Migrate your Python & Django Projects to uv, we were looking to migrate other projects to uv, but the path seemed less clear with existing pip-tools setups. Our requirements are often spread across multiple files, like this: $ find requirements/ -type f requirements/test/test.in requirements/test/test.txt requirements/deploy/deploy.txt requirements/deploy/deploy.in requirements/dev/dev.txt requirements/dev/dev.in requirements/base/base.in requirements/base/base.txt
Web frameworks
fromMouse Vs Python
1 month ago

Python 101: Reading TOML with Python - Mouse Vs Python

TOML (Tom's Obvious Minimal Language) is a configuration format adopted widely in Python development, especially useful in popular Python packages which use pyproject.toml.
Python
[ Load more ]