-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.04 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "arcp-sdk-example-python"
version = "0.1.0"
description = "ARCP Python SDK example — Astronomical Transient Triage"
requires-python = ">=3.11"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "ARCP contributors" }]
# Pinned at runtime via the ARCP_SDK_VERSION build arg in the Dockerfile.
# Listed here for local development outside Docker.
dependencies = [
"agentruntimecontrolprotocol",
"httpx>=0.27",
"websockets>=13",
"astropy>=6.0",
"numpy>=1.26",
"matplotlib>=3.8",
"textual>=0.60",
"aiosqlite>=0.20",
"pydantic>=2.7",
]
[project.optional-dependencies]
dev = ["ruff>=0.6", "mypy>=1.11", "pytest>=8.0", "pytest-asyncio>=0.23"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"arcp_example" = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
addopts = "-q"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
]