migrate poetry -> uv
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-10 23:45:40 +02:00
parent 4d3644e437
commit 983c4f7177
8 changed files with 650 additions and 1121 deletions

View File

@@ -1,22 +1,17 @@
[tool.poetry]
name = "sensor-web-api"
[project]
name = "server-python"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
description = "Add your description here"
readme = "README.md"
package-mode = false
requires-python = ">=3.12"
dependencies = [
"fastapi[standard]>=0.114.0",
"motor>=3.5.1",
"pydantic-settings>=2.4.0",
]
[tool.poetry.dependencies]
python = "^3.12"
motor = "^3.4.0"
fastapi = "^0.111.0"
pydantic-settings = "^2.4.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.4"
prettytable = "^3.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.uv]
dev-dependencies = [
"prettytable>=3.11.0",
"ruff>=0.6.4",
]