-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
121 lines (106 loc) · 2.86 KB
/
pyproject.toml
File metadata and controls
121 lines (106 loc) · 2.86 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dvoacap"
version = "1.0.1"
description = "Python port of DVOACAP HF propagation prediction engine with 86.6% validation accuracy and 2.3x performance boost"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.11"
license = "MIT"
authors = [
{name = "Python Port Contributors"},
]
maintainers = [
{name = "Joel Morin", email = "skyelaird@users.noreply.github.com"},
]
keywords = [
"HF propagation",
"ionosphere",
"VOACAP",
"amateur radio",
"ham radio",
"MUF",
"radio propagation",
"ionospheric prediction",
"skywave",
"HF radio"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Communications :: Ham Radio",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy>=1.20.0",
]
[project.optional-dependencies]
dashboard = [
"flask>=2.3.0",
"flask-cors>=4.0.0",
"requests>=2.31.0",
]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=22.0",
"flake8>=4.0",
"mypy>=0.950",
]
docs = [
"sphinx>=5.0",
"sphinx-rtd-theme>=1.0",
]
all = [
"dvoacap[dashboard,dev,docs]",
]
[project.urls]
Homepage = "https://github.com/skyelaird/dvoacap-python"
Documentation = "https://skyelaird.github.io/dvoacap-python/"
Repository = "https://github.com/skyelaird/dvoacap-python"
"Bug Tracker" = "https://github.com/skyelaird/dvoacap-python/issues"
"Original DVOACAP" = "https://github.com/VE3NEA/DVOACAP"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["dvoacap*"]
exclude = ["original*"]
[tool.setuptools.package-data]
dvoacap = ["DVoaData/*.dat"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.coverage.run]
source = ["src/dvoacap"]
omit = ["*/tests/*", "*/examples/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.black]
line-length = 100
target-version = ['py311', 'py312', 'py313']
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false