-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 961 Bytes
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "stapi-fastapi"
version = "0.8.0"
description = "Sensor Tasking API (STAPI) with FastAPI"
authors = [
{ name = "Christian Wygoda", email = "christian.wygoda@wygoda.net" },
{ name = "Phil Varner", email = "phil@philvarner.com" },
]
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27.0",
"fastapi>=0.115.0",
"pydantic>=2.10",
"geojson-pydantic>=1.1",
"pygeofilter>=0.2",
"returns>=0.23",
"nox>=2024.4.15",
"pydantic-settings>=2.2.1",
"uvicorn>=0.29.0",
"stapi-pydantic>=0.0.3",
]
[dependency-groups]
dev = [
"fastapi[standard]>=0.115.0",
"pytest>=8.3.5",
]
[tool.hatch.build.targets.sdist]
include = ["src/stapi_fastapi"]
[tool.hatch.build.targets.wheel]
include = ["src/stapi_fastapi"]
[tool.hatch.build.targets.wheel.sources]
"src/stapi_fastapi" = "stapi_fastapi"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"