Migrate to uv for dependency management

This commit is contained in:
akp 2025-03-17 12:27:19 +00:00
parent 2073c5e907
commit 4296e9823b
No known key found for this signature in database
GPG key ID: CF8D58F3DEB20755
4 changed files with 165 additions and 305 deletions

View file

@ -1,23 +1,14 @@
[tool.poetry]
[project]
name = "website"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
description = "Add your description here"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
Jinja2 = "^3.1.2"
PyYAML = "^6.0.1"
fire = "^0.7.0"
rich = "^13.7.0"
mistune = "^3.1.0"
pygments = "^2.17.2"
[tool.poetry.group.dev.dependencies]
pyinotify = "^0.9.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
requires-python = ">=3.13"
dependencies = [
"fire>=0.7.0",
"jinja2>=3.1.6",
"mistune>=3.1.2",
"pygments>=2.19.1",
"pyyaml>=6.0.2",
"rich>=13.9.4",
]