-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (41 loc) · 1.19 KB
/
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
44
45
46
47
48
49
50
[tool.poetry]
name = "radio-telemetry-tracker-drone-gcs"
version = "0.1.1"
description = "Radio Telemetry Tracker Drone Ground Control Station"
authors = ["Tyler Flar <tflar@ucsd.edu>"]
readme = "README.md"
packages = [
{ include = "radio_telemetry_tracker_drone_gcs" },
{ include = "scripts" },
]
include = [
{ path = "radio_telemetry_tracker_drone_gcs/frontend_dist/**/*", format = ["wheel"] }
]
[tool.poetry.dependencies]
python = ">=3.13,<3.14"
pyqt6 = "^6.8.0"
pyqt6-webengine = "^6.8.0"
requests = "^2.32.3"
radio-telemetry-tracker-drone-comms-package = {git = "https://github.com/UCSD-E4E/radio-telemetry-tracker-drone-comms-package.git"}
werkzeug = "^3.1.3"
pyproj = "^3.7.0"
scipy = "^1.15.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.4"
pytest = "^8.3.4"
pytest-qt = "^4.4.0"
[tool.poetry.scripts]
rtt-drone-gcs-dev = "scripts.dev:main"
rtt-drone-gcs = "radio_telemetry_tracker_drone_gcs.main:main"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--maxfail=5 --tb=short"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"