Basic fastapi setup
This commit is contained in:
commit
68ef1de2e4
6 changed files with 712 additions and 0 deletions
24
pyproject.toml
Normal file
24
pyproject.toml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue