-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.08 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
[project]
name = "openneuro-dashboard"
version = "0.1.0"
description = "Data-population pipeline for the OpenNeuro dashboard."
authors = [
{ name = "Christopher J. Markiewicz", email = "markiewicz@stanford.edu" }
]
license = "Apache-2.0"
requires-python = ">=3.14"
dependencies = [
"aioboto3>=15.5.0",
"cattrs>=25.3.0",
"gql[httpx]>=4.0.0",
"httpx>=0.28.1",
"ondiagnostics @ git+https://github.com/openneuroorg/ondiagnostics",
"pygit2>=1.19.1",
"rich>=14.3.2",
"stamina>=25.2.0",
"typer>=0.23.1",
]
[project.scripts]
openneuro-dashboard = "openneuro_dashboard.__main__:app"
[build-system]
requires = ["uv_build>=0.10.2,<0.11.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = "code/src"
## Use this to work on paired refactors
# [tool.uv.sources]
# ondiagnostics = { path = "../ondiagnostics", editable = true }
[dependency-groups]
dev = [
"ipython>=9.10.0",
"linkml>=1.10.0",
]
test = [
"linkml>=1.10.0",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=6.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"