-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (92 loc) · 2.72 KB
/
pyproject.toml
File metadata and controls
102 lines (92 loc) · 2.72 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[project]
name = "get-physics-done"
version = "1.1.0"
description = "GPD — Get Physics Done: open-source agentic AI system for physics research"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [
{ name = "Physical Superintelligence PBC" },
]
maintainers = [
{ name = "Physical Superintelligence PBC" },
]
keywords = [
"physical superintelligence",
"psi",
"physics",
"research",
"ai",
"agentic",
"ai runtimes",
"runtime adapters",
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
# Core
"typer>=0.24.1",
"rich>=15.0.0",
"pydantic>=2.13.1",
"PyYAML>=6.0.3",
"mcp[cli]>=1.27.0",
# Utilities
"pybtex>=0.25.1",
"Pillow>=12.1.1",
"jinja2>=3.1.6",
]
[project.optional-dependencies]
arxiv = [
"arxiv-mcp-server>=0.4.11",
"pypdf>=5.0",
]
[project.scripts]
gpd = "gpd.cli:entrypoint"
"gpd-mcp-conventions" = "gpd.mcp.servers.conventions_server:main"
"gpd-mcp-verification" = "gpd.mcp.servers.verification_server:main"
"gpd-mcp-protocols" = "gpd.mcp.servers.protocols_server:main"
"gpd-mcp-errors" = "gpd.mcp.servers.errors_mcp:main"
"gpd-mcp-patterns" = "gpd.mcp.servers.patterns_server:main"
"gpd-mcp-arxiv" = "gpd.mcp.servers.arxiv_bridge:main"
"gpd-mcp-wolfram" = "gpd.mcp.integrations.wolfram_bridge:main"
"gpd-mcp-state" = "gpd.mcp.servers.state_server:main"
"gpd-mcp-skills" = "gpd.mcp.servers.skills_server:main"
[project.urls]
Homepage = "https://github.com/psi-oss/get-physics-done"
Documentation = "https://github.com/psi-oss/get-physics-done#readme"
Repository = "https://github.com/psi-oss/get-physics-done"
Issues = "https://github.com/psi-oss/get-physics-done/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/gpd"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
asyncio_mode = "auto"
# Default to maximal local parallelism with worker stealing so giant modules do
# not serialize the suite behind a single xdist worker.
addopts = "-n auto --dist=worksteal"
markers = [
"no_stable_hook_python: opt out of the autouse _stable_hook_python fixture",
]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "C4", "UP", "TID251"]
ignore = ["E501", "B008"]
[tool.ruff.lint.flake8-tidy-imports.banned-api]
"typing.Any".msg = "Use `object` instead of `Any` for top types."
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-xdist>=3.8.0",
"ruff>=0.15.10",
]