-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 1.1 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
[tool.poetry]
name = "bell-avr-gui"
version = "0.1.0"
description = "GUI ground station for Bell AVR"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/bellflight/AVR-GUI"
authors = ["Nathan Vaughn <nvaughn51@gmail.com>"]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
numpy = "1.26.2"
scipy = "1.11.4"
colour = "0.1.5"
loguru = "0.7.2"
pyside6-essentials = ">=6.6.0,<7.0.0"
paho-mqtt = "^1.6.1"
bell-avr-libraries = { extras = ["serial", "qt"], version = "0.2.0a7" }
pyinstaller = "6.2.0"
typeguard = "4.1.5"
# needed for pydantic 2
# https://github.com/pyinstaller/pyinstaller-hooks-contrib/blob/master/CHANGELOG.rst#20235-2023-07-05
pyinstaller-hooks-contrib = ">=2023.5"
[tool.poetry.group.dev.dependencies]
pre-commit = "3.5.0"
pytest-cov = "4.1.0"
pytest = "7.4.3"
[tool.pyright]
typeCheckingMode = "basic"
venvPath = "."
venv = ".venv"
reportMissingParameterType = true
[tool.ruff]
ignore = ["E501"]