-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 767 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (30 loc) · 767 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
[build-system]
requires = ["setuptools>=70", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "antenna-pattern-lab"
version = "0.45.0"
description = "Empirical antenna coverage analysis from PSK Reporter FT8 spots"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"matplotlib>=3.8,<4",
"numpy>=2,<3",
"paho-mqtt>=2.1,<3",
"PySide6>=6.7,<7",
"reportlab>=4,<5",
]
[project.optional-dependencies]
dev = [
"pytest>=8,<9",
"pyinstaller>=6.8,<7",
]
[project.gui-scripts]
antenna-pattern-lab = "antenna_pattern_lab.app:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
antenna_pattern_lab = ["assets/*.shp", "assets/*.md"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"