-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (60 loc) · 1.46 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (60 loc) · 1.46 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
67
68
69
70
71
[project]
name = "pysquared"
version = "0.1.0"
requires-python = ">=3.13"
dependencies = [
"pysquared-flight-software",
"pysquared-flight-software-mocks",
"pysquared-flight-software-unit-tests",
"pysquared-ground-station",
]
[dependency-groups]
docs = [
"mkdocs-material==9.6.14",
"mkdocstrings[python]==0.29.1",
"mkdocs-section-index==0.3.10",
"mkdocs-git-revision-date-localized-plugin==1.4.7",
"mkdocs-minify-plugin==0.7.1",
"mkdocs-llmstxt==0.2.0",
]
[tool.uv.sources]
pysquared-flight-software = { workspace = true }
pysquared-flight-software-mocks = { workspace = true }
pysquared-flight-software-unit-tests = { workspace = true }
pysquared-ground-station = { workspace = true }
[tool.uv.workspace]
members = [
"circuitpython-workspaces/*",
"cpython-workspaces/*",
]
exclude = [
"circuitpython-workspaces/typeshed",
]
[tool.ruff.format]
# Use `\n` line endings for all files
line-ending = "lf"
[tool.pytest.ini_options]
pythonpath = "."
[tool.coverage.run]
branch = true
relative_files = true
[tool.coverage.report]
show_missing = true
skip_covered = false
include = [
"circuitpython-workspaces/flight-software/**/*.py",
]
[tool.coverage.html]
directory = ".coverage-reports/html"
[tool.coverage.xml]
output = ".coverage-reports/coverage.xml"
[tool.interrogate]
ignore-init-method = true
omit-covered-files = true
fail-under = 100
verbose = 2
color = true
exclude = [
"circuitpython-workspaces/typeshed",
"firmware",
]