-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (70 loc) · 1.85 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (70 loc) · 1.85 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "skycache"
version = "1.34.2"
description = "SkyCache Nexus + Skybrary Live: honesty/AEO consistency (llms.txt, version lockstep, RX doctor fail-closed), 78 curated PD works, dual-access packs - not free commercial satellite broadband."
readme = "README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.11"
authors = [{ name = "SkyCache Contributors" }]
keywords = [
"sdr",
"satellite",
"offline",
"education",
"humanitarian",
"rtl-sdr",
"weather",
"mesh",
"community-network",
"dtn",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Ham Radio",
"Topic :: Education",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
]
dependencies = [
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
"pydantic>=2.5",
"pydantic-settings>=2.1",
"python-multipart>=0.0.9",
"aiofiles>=23.2",
"qrcode>=7.4",
]
[project.optional-dependencies]
rx = [
"sgp4>=2.23",
]
dev = [
"pytest>=8.0",
"httpx>=0.27",
"ruff>=0.3,<0.16",
]
[project.scripts]
skycache = "skycache.__main__:main"
[project.urls]
Homepage = "https://github.com/Pitchfork-and-Torch/SkyCache"
Documentation = "https://github.com/Pitchfork-and-Torch/SkyCache/tree/main/docs"
Issues = "https://github.com/Pitchfork-and-Torch/SkyCache/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["skycache*"]
[tool.setuptools.package-data]
skycache = ["db/schema.sql"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
# Pin classic defaults so ruff 0.16+ expanded rule sets do not fail CI.
select = ["E4", "E7", "E9", "F"]