-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 848 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 848 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
[project]
name = "atdata-app"
version = "0.4.0b1"
description = "ATProto AppView for science.alt.dataset"
readme = "README.md"
authors = [
{ name = "Maxine Levesque", email = "hello@maxine.science" },
]
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.34",
"websockets>=14.0",
"atproto>=0.0.65",
"asyncpg>=0.30",
"httpx>=0.28",
"mcp>=1.0",
"pydantic>=2.10",
"pydantic-settings>=2.7",
"jinja2>=3.1",
]
[project.scripts]
atdata-mcp = "atdata_app.mcp_server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/atdata_app"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[dependency-groups]
dev = [
"pytest>=8.4",
"pytest-asyncio>=0.25",
"pytest-cov>=7.0",
"ruff>=0.14",
]