-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
43 lines (37 loc) · 1004 Bytes
/
pyproject.toml
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
[project]
name = "chrisomatic"
version = "0.0.0" # version is set by `rye version` in .github/workflows/build.yml
description = "ChRIS backend provisioner"
authors = [
{ name = "Jennings Zhang", email = "[email protected]" }
]
dependencies = [
"typer>=0.12.3",
"aiohttp>=3.9.5",
"rich>=13.7.1",
"pyserde>=0.19.3",
"aiodocker>=0.22.2",
"strictyaml>=1.7.3",
"aiochris>=0.8.0",
]
readme = "README.md"
requires-python = "== 3.12.3"
[project.scripts]
chrisomatic = "chrisomatic.cli.typer:app"
[tool.rye.scripts]
test = "docker compose run --rm --build test"
simulate = "docker compose run --rm --build test /app/scripts/simulation.sh"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.3.2",
"pytest-asyncio>=0.23.8",
"pytest-cov>=5.0.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/chrisomatic"]