-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
54 lines (48 loc) · 1.42 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
51
52
53
54
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "not1mm"
version = "24.11.24.1"
description = "NOT1MM Logger"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name="Michael Bridak", email="michael.bridak@gmail.com" },
]
dependencies = [
"PyQt6",
"requests",
"dicttoxml",
"xmltodict",
"pyserial",
"sounddevice",
"soundfile",
"numpy",
"notctyparser >= 23.6.21",
"rapidfuzz",
"appdata",
"Levenshtein",
]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: X11 Applications :: Qt",
"Operating System :: POSIX :: Linux",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Topic :: Communications :: Ham Radio",
]
[project.urls]
"Homepage" = "https://github.com/mbridak/not1mm"
"Bug Tracker" = "https://github.com/mbridak/not1mm/issues"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["not1mm.testing*", "not1mm.not1mm.testing*", "testing*", "test", "usb_vfo_knob*", "research*",]
[tool.setuptools.package-data]
"not1mm.data" = ["*.json", "*.txt", "*.SCP", "*.ui", "*.ttf", "*.desktop", "*.png", "*.qss", "*.sql", "*.html",]
"not1mm.data.phonetics" = ["*.wav",]
"not1mm.icon" = ["*.png",]
[project.scripts]
not1mm = "not1mm.__main__:run"