-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1008 Bytes
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 1008 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
[project]
name = "proveskit-rp2350-v5a"
version = "1.0.0"
description = "Flight Software for the PROVES Kit RP2350 v5A"
readme = "README.md"
requires-python = ">=3.13"
dependencies = []
[dependency-groups]
dev = [
"adafruit-circuitpython-typing==1.12.1",
"circuitpython-stubs==9.2.8",
"pre-commit==4.2.0",
"pyright[nodejs]==1.1.404",
]
[tool.ruff.format]
# Use `\n` line endings for all files
line-ending = "lf"
[tool.pyright]
include = [
"src/flight-software/boot.py",
"src/flight-software/main.py",
"src/flight-software/repl.py",
"src/flight-software/safemode.py",
"src/flight-software/lib/proveskit_rp2040_v4/*",
"src/ground_station/boot.py",
"src/ground_station/main.py",
"src/ground_station/repl.py",
"src/ground_station/safemode.py",
]
exclude = [
"**/__pycache__",
".venv",
".git",
"artifacts",
"src/*/lib",
"typings",
"typeshed",
]
stubPath = "./typings"
typeshedPath = "./typeshed"
reportMissingModuleSource = false