-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (57 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
66 lines (57 loc) · 1.38 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "teller-gnd"
version = "0.1.0"
description = "Ground station software for the TELLER experiment"
authors = [{ name = "Tamas Nepusz", email = "ntamas@protonmail.ch" }]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"textual>=2.0.0",
"rich>=13.7.0",
"anyio>=4.4.0",
"blinker>=1.8.2",
"pyserial>=3.5",
"crcmod-plus>=2.1.0",
"typer>=0.12.3",
"littlefs-python>=0.10.3",
"platformdirs>=4.3.6",
"msgpack>=1.1.0",
"httpx>=0.27.2",
"numpy>=2.1.3",
]
[dependency-groups]
dev = [
"coverage[toml]>=7.4.0",
"pytest>=8.3.2",
"pytest-cov>=5.0.0",
"pdoc>=14.3.0",
"pytest-asyncio>=0.23.5",
"textual-dev>=1.5.1",
]
[project.optional-dependencies]
analysis = ["pillow>=11.1.0"]
doom = ["cydoomgeneric>=0.1.0", "pygame>=2.6.0"]
[project.scripts]
teller-gnd = "teller.gnd.cli.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.coverage.report]
exclude_also = [
"def __repr__",
"raise NotImplementedError",
"raise AssertionError",
"@(abc\\.)?abstractmethod",
"if 0:",
"if False:",
"if __name__ == .__main__.:",
]
[tool.hatch.build.targets.wheel]
packages = ["src/teller"]
[[tool.uv.index]]
name = "fury"
url = "https://pypi.fury.io/ntamas/"
[tool.uv.sources]
cydoomgeneric = { index = "fury" }