diff options
| author | Tom Flux <tom@tomflux.xyz> | 2026-06-23 19:55:42 +0100 |
|---|---|---|
| committer | Tom Flux <tom@tomflux.xyz> | 2026-06-23 19:55:42 +0100 |
| commit | ddaedf00499a84bafb6122e7e5a138a3441f838b (patch) | |
| tree | 345a32a113ccade235c1a6b0681e5ce81fccaf30 /pyproject.toml | |
| parent | 0aabf50834a31ff4ae9f8fd58639e444a449110b (diff) | |
Migrate dependency management to uv
Replace requirements.txt with pyproject.toml (direct deps only; uv
resolves the rest into uv.lock). Point the systemd unit at the
uv-managed .venv, and gitignore it.
Run `uv lock` to generate the lockfile and commit it.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d09d09a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[project] +name = "food" +version = "0.1.0" +description = "Pantry + meta-recipe meal planning (Django, HTMX)" +requires-python = ">=3.11" +dependencies = [ + "django==5.2.12", + "djangorestframework==3.17.1", + "whitenoise==6.12.0", + "gunicorn==25.3.0", + "recipe-scrapers==15.11.0", + "requests==2.33.1", +] + +# No [build-system]: this is an application, not an installable package, so uv +# treats it as a virtual project and won't try to build/install it. |
