switch from Poetry to Uv & upgrade to Python 3.13

This commit is contained in:
ducklet 2024-10-09 21:47:04 +02:00
parent 3cbff4c68e
commit 6edd82de92
6 changed files with 115 additions and 135 deletions

View file

@ -1,15 +1,10 @@
[tool.poetry]
[project]
name = "webclip"
version = "0"
description = ""
authors = []
[tool.poetry.dependencies]
python = "^3.12"
uvicorn = "^0.27.0.post1"
starlette = "^0.36.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"starlette>=0.39.2",
"uvicorn>=0.31.0",
]