-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.5 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (53 loc) · 1.5 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
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[project]
name = "spicebind"
version = "0.0.2"
description = "SpiceBind is a bridge that embeds the ngspice analog engine inside VPI-capable Verilog simulator for mixed-signal co-simulation."
authors = [{name = "Tomasz Hemperek"}]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[project.optional-dependencies]
dev = [
"pytest",
"cocotb",
"numpy",
"matplotlib",
"cocotbext-spi",
"tomli",
]
docs = [
"sphinx>=8.2",
"breathe",
"sphinx-book-theme==1.1.3", # pin this to exact version to guard against any CSS changes
"sphinx-design>=0.6.1",
"sphinxcontrib-spelling>=5.3.0",
"pyenchant",
"sphinx-argparse-cli",
"sphinx-autobuild",
"sphinx-codeautolink",
"myst-parser",
]
[project.scripts]
spicebind-vpi-path = "spicebind.cli:main"
[project.urls]
Homepage = "https://github.com/themperek/spicebind"
Repository = "https://github.com/themperek/spicebind"
[tool.scikit-build]
# Specify the CMake version
cmake.version = ">=3.15"
# Use ninja generator for faster builds
ninja.version = ">=1.10"
[tool.scikit-build.cmake.define]
# Pass any CMake defines if needed
# CMAKE_BUILD_TYPE = "Release"
[tool.black]
line-length = 120