forked from psi-oss/get-physics-done
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (83 loc) · 2.29 KB
/
pyproject.toml
File metadata and controls
92 lines (83 loc) · 2.29 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
[project]
name = "get-physics-done"
version = "1.1.0"
description = "GPD — Get Physics Done: open-source AI copilot 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",
"claude",
"codex",
"gemini",
"opencode",
]
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>=14.3.3",
"pydantic>=2.12",
"PyYAML>=6.0.3",
"mcp[cli]>=1.26.0",
# Utilities
"pybtex>=0.25.1",
"Pillow>=12.1.1",
"jinja2>=3.1.6",
# MCP servers
"arxiv-mcp-server>=0.3.2",
]
[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-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"
markers = []
[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",
"ruff>=0.15.5",
]