-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (86 loc) · 2.59 KB
/
pyproject.toml
File metadata and controls
94 lines (86 loc) · 2.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
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openeinstein"
version = "0.1.0"
description = "Open-source AI physicist agent platform"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [
{ name = "OpenEinstein Contributors" }
]
keywords = ["ai", "agents", "physics", "mcp", "research"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"pydantic>=2.0",
"fastapi>=0.115",
"uvicorn>=0.31",
"pydantic-ai>=0.1",
"litellm>=1.0",
"mcp>=1.0",
"typer>=0.12",
"rich>=13.0",
"pyyaml>=6.0",
"sqlalchemy>=2.0",
"numpy>=1.26",
"scipy>=1.12",
"matplotlib>=3.8",
"sympy>=1.12",
"opentelemetry-api>=1.20",
"cryptography>=41.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.4",
"mypy>=1.10",
"build>=1.2",
]
langgraph = ["langgraph>=0.2"]
pgvector = ["pgvector>=0.3", "psycopg2-binary>=2.9"]
physbert = ["transformers>=4.40", "torch>=2.2"]
# Cadabra is provided as a system dependency (CLI runtime), not via PyPI.
cadabra = []
jax = ["jax>=0.4", "jaxlib>=0.4"]
latex = ["latexmk"]
[project.urls]
Homepage = "https://github.com/open-einstein/openeinstein"
Documentation = "https://github.com/open-einstein/openeinstein/tree/main/docs"
Repository = "https://github.com/open-einstein/openeinstein"
Issues = "https://github.com/open-einstein/openeinstein/issues"
[project.scripts]
openeinstein = "openeinstein.cli.main:app"
openeinstein-mcp-registry = "openeinstein.tools.mcp_entrypoints:registry_cli"
openeinstein-mcp-sympy = "openeinstein.tools.mcp_entrypoints:sympy_cli"
openeinstein-mcp-mathematica = "openeinstein.tools.mcp_entrypoints:mathematica_cli"
openeinstein-mcp-cadabra = "openeinstein.tools.mcp_entrypoints:cadabra_cli"
openeinstein-mcp-scanner = "openeinstein.tools.mcp_entrypoints:scanner_cli"
openeinstein-mcp-python-sandbox = "openeinstein.tools.mcp_entrypoints:python_sandbox_cli"
[tool.setuptools]
package-dir = { "" = "src" }
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"openeinstein.gateway.web" = [
"static/control-ui/index.html",
"static/control-ui/vite.svg",
"static/control-ui/assets/*",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-q"
markers = [
"production: production profile qualification tests",
]