-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.18 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
[project]
name = "sky130-hdl21"
description="SkyWater 130nm PDK Package for Hdl21"
version = "7.0.0" # VLSIR_VERSION
dependencies = [
"hdl21>=7.0.0", # VLSIR_VERSION
]
requires-python = ">=3.7, <3.13"
maintainers = [
{name = "Dan Fritchman", email = "[email protected]"},
]
authors = [
{name = "Dan Fritchman", email = "[email protected]"},
{name = "Thomas Pluck"},
{name = "Curtis Mayberry", email = "[email protected]"},
]
readme = "readme.md"
license = {file = "LICENSE"}
keywords = ["PDK", "EDA", "analog", "circuit"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
[project.optional-dependencies]
dev = ["vlsirdev"]
[project.urls]
Homepage = "https://github.com/dan-fritchman/Hdl21"
Documentation = "https://github.com/dan-fritchman/Hdl21/blob/main/pdks/Sky130/readme.md"
Repository = "https://github.com/dan-fritchman/Hdl21"
"Bug Tracker" = "https://github.com/dan-fritchman/Hdl21/issues"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "sky130_hdl21"
[tool.pytest.ini_options]
addopts = "--ignore=pdks/PdkTemplate"