-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
84 lines (74 loc) · 2.86 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
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
[tool.poetry]
name = "klayout-pex"
version = "0.1.6"
description = "Parasitic Extraction Tool for KLayout"
authors = ["Martin Köhler <[email protected]>"]
homepage = "https://martinjankoehler.github.io/klayout-pex-website/"
repository = "https://github.com/martinjankoehler/klayout-pex.git"
license = "GPL-3.0-or-later"
readme = "README.md"
keywords = ["electronic", "pex", "parasitic", "extraction", "vlsi", "eda", "ic", "spice",
"klayout", "analog", "fsic", "gds", "FasterCap", "magic"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: C++",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)"
]
packages = [
{ include = "klayout_pex" },
{ include = "pdk", to = "klayout_pex" },
{ include = "process_stack_pb2.py", from = "build/python/klayout_pex_protobuf/", to = "klayout_pex_protobuf" },
{ include = "process_parasitics_pb2.py", from = "build/python/klayout_pex_protobuf/", to = "klayout_pex_protobuf" },
{ include = "tech_pb2.py", from = "build/python/klayout_pex_protobuf/", to = "klayout_pex_protobuf" },
{ include = "__init__.py", from = "klayout_pex_protobuf/", to = "klayout_pex_protobuf" },
{ include = "sky130A_tech.pb.json", from = "build", to = "klayout_pex_protobuf" },
{ include = "ihp_sg13g2_tech.pb.json", from = "build", to = "klayout_pex_protobuf" },
]
include = [
"kpex",
"klayout_pex_protobuf",
"pdk/**/*",
"build/python/klayout_pex_protobuf/*",
"build/*.json",
"klayout_pex_protobuf/__init__.py"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/martinjankoehler/klayout-pex/issues"
[tool.poetry.scripts]
kpex = 'klayout_pex.__main__:main'
[tool.poetry.dependencies]
python = "^3.12"
klayout = "^0.29.10" # required minimum version because of EdgeNeighborhoodVisitor
rich = "^13.9.4"
protobuf = "^5.29.1"
rich-argparse = "^1.6.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
pytest-html = "^4.1.1"
allure-pytest = "^2.13.5"
csv-diff = "^1.2"
coverage = "^7.6.8"
[tool.poetry.group.dev.dependencies]
pylint = "^3.3.1"
pylint-json2html = "^0.5.0"
licenseheaders = "^0.8.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"serial",
"wip: mark tests as work-in-progress (delect with '-m \"not wip\"')",
]
[tool.poetry_bumpversion.file."klayout_pex/version.py"]