-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
48 lines (42 loc) · 1.34 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
[project]
name = "hdl21"
description = "Hardware Description Library"
version = "7.0.0" # VLSIR_VERSION
dependencies = [
"vlsir>=7.0.0", # VLSIR_VERSION
"vlsirtools>=7.0.0", # VLSIR_VERSION
"pydantic>=1.9.0,<2.7",
]
requires-python = ">=3.7, <3.13"
maintainers = [{ name = "Dan Fritchman", email = "[email protected]" }]
authors = [
{ name = "Dan Fritchman", email = "[email protected]" },
{ name = "Thomas Pluck" },
{ name = "Kennedy Caisley" },
{ name = "Zeyi Wang" },
{ name = "Arya Reais-Parsi" },
{ name = "Vighnesh Iyer" },
{ name = "Curtis Mayberry", email = "[email protected]" },
]
readme = "readme.md"
license = { file = "LICENSE" }
keywords = ["HDL", "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/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 = "hdl21"
[tool.pytest.ini_options]
addopts = "--ignore=pdks/PdkTemplate"