-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 858 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 858 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
[build-system]
requires = ["hatchling>=1.30.1"]
build-backend = "hatchling.build"
[project]
name = "launchplane"
version = "0.1.0"
description = "Launchplane control-plane contracts and workflows for deployment truth and promotion"
requires-python = ">=3.13"
dependencies = [
"Authlib>=1.7.0",
"click>=8.4.1",
"fastapi>=0.137.2",
"pydantic>=2.13.4",
"psycopg[binary]>=3.3.4",
"pyjwt[crypto]>=2.13.0",
"requests>=2.34.2",
"sqlalchemy>=2.0.51",
"uvicorn>=0.38.0",
"alembic>=1.18.4",
"a2wsgi>=1.10.10",
]
[project.optional-dependencies]
dev = [
"mypy>=2.1.0",
"ruff>=0.15.18",
]
[project.scripts]
launchplane = "control_plane.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["control_plane"]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.mypy]
python_version = "3.13"
strict = true