-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 939 Bytes
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 939 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
45
46
47
48
49
50
51
[project]
name = "ionbeam-monorepo"
version = "0.1.0"
description = "Ionbeam monorepo workspace"
requires-python = ">=3.12"
dependencies = []
[tool.uv.workspace]
members = [
"ionbeam-cli",
"ionbeam-client",
"ionbeam",
"ionbeam-legacy-api",
"data-sources/*",
"exporters/*"
]
[tool.uv]
constraint-dependencies = [
"click>=8.1.0",
"pydantic>=2.11.0",
"pandas>=2.2.3",
"numpy>=2.2.0",
"pyarrow>=19.0.0",
"httpx>=0.28.0",
"pyyaml>=6.0.3",
"structlog>=25.4.0",
]
[tool.pytest.ini_options]
testpaths = [
"ionbeam/tests",
"ionbeam-client/tests",
"exporters/ecmwf/tests",
]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[dependency-groups]
dev = [
"ruff>=0.14.5",
]
docs = [
"sphinx>=8.2.3",
"sphinxcontrib-mermaid>=1.1.0",
"pydata-sphinx-theme>=0.16.1",
"ionbeam-client",
]
[tool.uv.sources]
ionbeam-client = { workspace = true }