-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (89 loc) · 2.97 KB
/
Copy pathpyproject.toml
File metadata and controls
96 lines (89 loc) · 2.97 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "eda-agents"
version = "0.1.0"
description = "AI/LLM-assisted analog circuit design with SPICE-in-the-loop validation for IHP SG13G2"
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
authors = [
{name = "Mauricio-xx", email = "mauricio.xmontanares@gmail.com"},
]
keywords = ["eda", "analog", "spice", "agents", "llm", "ihp-sg13g2", "circuit-design"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
dependencies = [
"numpy>=1.20",
"pydantic>=2.0",
"pyyaml>=6.0",
"sympy>=1.11",
"pandas>=2.0",
"paretoset>=1.2",
]
[project.urls]
Homepage = "https://github.com/Mauricio-xx/eda-agents"
Repository = "https://github.com/Mauricio-xx/eda-agents"
Issues = "https://github.com/Mauricio-xx/eda-agents/issues"
[project.scripts]
eda-bridge = "eda_agents.bridge.cli:main"
eda-mcp = "eda_agents.mcp.server:run_server"
eda-init = "eda_agents.bootstrap:main"
[project.optional-dependencies]
agents = [
"openai>=1.0",
]
adk = [
"google-adk>=1.0",
"litellm>=1.50",
"google-generativeai>=0.8",
]
coordination = [
"context-teleport>=0.5.0",
]
mcp = [
"fastmcp>=0.1.0",
"litellm>=1.50",
"httpx>=0.27",
]
adc = [
"adctoolbox>=0.6.4",
]
dev = [
"pytest>=7.0",
"ruff>=0.1.0",
"anyio>=4.0",
]
plots = [
"matplotlib>=3.8",
]
[tool.hatch.build.targets.wheel]
packages = ["src/eda_agents"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
anyio_mode = "auto"
markers = [
"spice: requires ngspice + IHP SG13G2 PDK (deselect with -m 'not spice')",
"klayout: requires klayout + GF180MCU PDK (deselect with -m 'not klayout')",
"glayout: requires .venv-glayout with gLayout installed (deselect with -m 'not glayout')",
"gdsfactory: requires .venv-gdsfactory with gdsfactory + iic-jku/IHP installed (deselect with -m 'not gdsfactory')",
"librelane: requires librelane + gf180mcu-project-template (deselect with -m 'not librelane')",
"magic: requires magic + GF180MCU PDK (deselect with -m 'not magic')",
"cc_cli: requires Claude Code CLI installed (deselect with -m 'not cc_cli')",
"veriloga: requires openvaf + ngspice for Verilog-A -> OSDI pipeline (deselect with -m 'not veriloga')",
"xspice: requires ngspice source tree with cmpp + C toolchain for .cm code-model builds (deselect with -m 'not xspice')",
"bridge: end-to-end EDA bridge demo (deselect with -m 'not bridge')",
"bench: eda-agents benchmark suite end-to-end (deselect with -m 'not bench')",
"mcp: requires fastmcp for MCP server tests (deselect with -m 'not mcp')",
"plots: requires matplotlib for plotting tests (deselect with -m 'not plots')",
]
[tool.ruff]
target-version = "py311"
line-length = 100