This repository was archived by the owner on Jan 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (81 loc) · 2.18 KB
/
pyproject.toml
File metadata and controls
91 lines (81 loc) · 2.18 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[tool.poetry]
name = "server"
version = "0.1.3"
description = "clairBuoyant Server"
authors = ["Kyle J. Burda <47502769+kylejb@users.noreply.github.com>"]
[tool.poetry.dependencies]
alembic = "^1.18.1"
asyncpg = "^0.31.0"
fastapi = "^0.128.0"
GeoAlchemy2 = "^0.18.1"
greenlet = "^3.3.0"
gunicorn = "^23.0.0"
pybuoy = "^0.5.9"
pydantic = "^2.12.5"
pydantic-settings = "^2.12.0"
python = ">=3.11, <4.0"
python-dotenv = "^1.2.1"
requests = "^2.32.5"
Shapely = "^2.1.2"
SQLAlchemy = "^2.0.46"
uvicorn = "^0.40.0"
[tool.poetry.group.dev.dependencies]
coverage = { version = "7.13.1", extras = ["toml"]}
httpx = "^0.28.1"
mypy = "^1.19.1"
pre-commit = "^4.5.1"
pytest-asyncio = "^1.3.0"
pytest-cov = "^7.0.0"
pytest = "^9.0.2"
ruff = "^0.14.13"
[tool.poetry.scripts]
bootstrap="scripts.poetry_entrypoint:bootstrap"
check="scripts.poetry_entrypoint:check"
clean="scripts.poetry_entrypoint:clean"
coverage="scripts.poetry_entrypoint:coverage"
db-create="scripts.poetry_entrypoint:create"
db-docker="scripts.poetry_entrypoint:docker"
db-migrations_autogenerate="scripts.poetry_entrypoint:migrations_autogenerate"
db-migrations_run="scripts.poetry_entrypoint:migrations_run"
db-migrations_undo="scripts.poetry_entrypoint:migrations_undo"
db-seeds="scripts.poetry_entrypoint:seeds"
dotenv="scripts.poetry_entrypoint:dotenv"
init="scripts.poetry_entrypoint:init"
lint="scripts.poetry_entrypoint:lint"
setup="scripts.poetry_entrypoint:setup"
start="scripts.poetry_entrypoint:start"
test="scripts.poetry_entrypoint:test"
uninstall="scripts.poetry_entrypoint:uninstall"
[tool.ruff]
exclude = [
".git",
".mypy_cache",
".pytest_cache",
"htmlcov",
"venv",
".venv",
]
line-length = 88
target-version = "py311"
[tool.coverage]
# https://github.com/nedbat/coveragepy
[tool.coverage.run]
source = ["server"]
branch = true
omit = ['']
[tool.coverage.report]
exclude_lines = [
"# noqa",
"# pragma: no cover",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == \"__main__\":",
]
[tool.mypy]
explicit_package_bases = true
namespace_packages = true
[tool.pytest.ini_options]
asyncio_mode = "strict"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"