-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (77 loc) · 2 KB
/
pyproject.toml
File metadata and controls
85 lines (77 loc) · 2 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
[project]
name = "physbound"
version = "0.2.0"
description = "Physical Layer Linter — validates RF and physics calculations against hard physical limits"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
authors = [
{ name = "Robert Jones", email = "jonesrobm@gmail.com" },
]
keywords = [
"mcp",
"mcp-server",
"model-context-protocol",
"physics",
"rf-engineering",
"link-budget",
"shannon-hartley",
"thermal-noise",
"antenna",
"signal-processing",
"validation",
"ai-hallucination",
"telecommunications",
"friis-equation",
"radar",
"radar-range-equation",
"radar-cross-section",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Communications",
"Typing :: Typed",
]
dependencies = [
"fastmcp==2.14.5",
"pint==0.25.2",
"scipy==1.15.2",
"numpy==2.2.3",
"pydantic>=2.10,<3",
]
[project.optional-dependencies]
dev = [
"pytest==8.3.5",
"pytest-cov==6.0.0",
"hypothesis>=6.100,<7",
"pre-commit==4.1.0",
"ruff==0.9.6",
"mypy==1.15.0",
"python-dotenv>=1.1.0",
]
[project.urls]
Homepage = "https://github.com/JonesRobM/physbound"
Repository = "https://github.com/JonesRobM/physbound"
Issues = "https://github.com/JonesRobM/physbound/issues"
[project.scripts]
physbound = "physbound.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/physbound"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.pytest.ini_options]
testpaths = ["tests"]