-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (54 loc) · 1.59 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
[project]
name = "qso-graph-config"
version = "0.1.2"
description = "QSO-Graph MCP Suite — interactive installer and manager"
license = {text = "GPL-3.0-or-later"}
requires-python = ">=3.11"
authors = [{name = "KI7MT", email = "ki7mt@yahoo.com"}]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Communications :: Ham Radio",
"Intended Audience :: End Users/Desktop",
]
# Core + Public servers (default install)
dependencies = [
"adif-mcp>=1.0.0",
"solar-mcp>=0.2.0",
"pota-mcp>=0.1.1",
"sota-mcp>=0.1.4",
"iota-mcp>=0.1.0",
"wspr-mcp>=0.2.0",
]
[project.optional-dependencies]
# Authenticated servers (requires account credentials in OS keyring)
auth = [
"qso-graph-auth>=0.1.0",
"qrz-mcp>=0.3.0",
"eqsl-mcp>=0.3.0",
"lotw-mcp>=0.3.0",
"hamqth-mcp>=0.3.0",
]
# ionis-mcp (requires dataset download — run ionis-download after install)
ionis = [
"ionis-mcp>=1.2.6",
]
# Everything
full = [
"qso-graph-config[auth]",
"qso-graph-config[ionis]",
]
[project.urls]
Homepage = "https://qso-graph.io"
Documentation = "https://qso-graph.io"
Repository = "https://github.com/qso-graph"
Issues = "https://github.com/qso-graph/qso-graph-config/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"