-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.38 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "eibi-swl-dashboard"
version = "1.0.1"
description = "Interactive TUI dashboard and CLI tools for shortwave listeners using the EiBi broadcast schedule"
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.10"
authors = [
{ name = "Michel Lachaine", email = "mike@mikelachaine.ca" },
]
keywords = ["shortwave", "radio", "swl", "eibi", "broadcast", "schedule", "tui"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Ham Radio",
]
dependencies = [
"rich>=13.0",
"textual>=0.40",
]
[project.urls]
Homepage = "https://github.com/mikewam/SWLScheduleTool"
Issues = "https://github.com/mikewam/SWLScheduleTool/issues"
[project.scripts]
swl-sched = "eibi_swl.swl:main"
checksked = "eibi_swl.checksked:main"
updatesked = "eibi_swl.updatesked:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
eibi_swl = [
"countrycode.dat",
"targetcode",
"transmittersite",
"swlconfig.conf.sample",
"swl-schedules-data/*.csv",
"swl-schedules-data/*.dat",
"swl-schedules-data/*.TXT",
"swl-schedules-data/*.json",
]