Basic fastapi setup

This commit is contained in:
Marty Oehme 2025-06-05 15:01:39 +02:00
commit 68ef1de2e4
Signed by: Marty
GPG key ID: 4E535BC19C61886E
6 changed files with 712 additions and 0 deletions

24
pyproject.toml Normal file
View file

@ -0,0 +1,24 @@
[project]
name = "pollen-prophet"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = ["fastapi[standard]>=0.115.12"]
[dependency-groups]
dev = ["mypy>=1.16.0", "ruff>=0.11.12"]
[tool.uv]
package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["prophet"]
[project.scripts]
prophet = "prophet.app:start"