-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.78 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.78 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "pcbflow"
version = "0.1.0"
description = "AI-assisted PCB design harness — from requirements to manufacturing (EasyEDA + KiCad)"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "NijoP" }]
keywords = ["pcb", "eda", "kicad", "easyeda", "electronics", "hardware",
"automation", "ai", "drc", "netlist", "pcb-design"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Manufacturing",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
# Core is Python-3 standard library only. The single runtime dependency below is used *only*
# by the headless EasyEDA CDP driver (automation/browser/cdp.py); everything else runs stdlib.
dependencies = ["websockets>=10,<16"]
[project.optional-dependencies]
dev = ["pytest>=7,<9", "coverage>=7,<8"]
mcp = ["mcp>=1.2"]
[project.urls]
Homepage = "https://github.com/NijoP/pcbflow"
Repository = "https://github.com/NijoP/pcbflow"
Changelog = "https://github.com/NijoP/pcbflow/blob/main/CHANGELOG.md"
Issues = "https://github.com/NijoP/pcbflow/issues"
[project.scripts]
pcbflow = "pcbflow.cli:main"
pcbflow-mcp = "pcbflow.mcp_server:main"
pcbmunch = "pcbflow.munch_server:main"
[tool.setuptools]
packages = ["pcbflow"]
[tool.pytest.ini_options]
testpaths = ["tests"]