-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
34 lines (30 loc) · 1.21 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "edg"
version = "0.2.0"
description = "Hardware description language for circuit boards"
readme = "README.md"
authors = [{ name = "Ducky", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Typing :: Typed",
]
keywords = ["PCB", "hardware description language"]
dependencies = [
"protobuf >= 3.20.0",
"sexpdata==0.0.3",
"Deprecated",
"typing_extensions",
]
requires-python = ">=3.9"
[tool.setuptools]
packages = ["edg.edgir", "edg.edgrpc", "edg.core", "edg.hdl_server", "edg.electronics_model", "edg.abstract_parts", "edg.parts", "edg.jlcparts", "edg"]
[tool.setuptools.package-data]
edg = ["core/resources/edg-compiler-precompiled.jar", "abstract_parts/resources/*.kicad_sch", "abstract_parts/resources/kicad_footprints.json", "parts/resources/Pruned_JLCPCB SMT Parts Library(20220419).csv", "parts/resources/*.kicad_sch"]
[project.urls]
Homepage = "https://github.com/BerkeleyHCI/PolymorphicBlocks"