-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
75 lines (64 loc) · 1.51 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
[tool.setuptools_scm]
write_to = "scgallery/_version.py"
write_to_template = '__version__ = "{version}" # noqa W292'
[tool.setuptools]
include-package-data = true
packages = [
"scgallery"
]
[project]
name = "sc-gallery"
authors = [
{name = "Peter Gadfort", email = "[email protected]"},
]
description = "Design gallery for SiliconCompiler"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
dependencies = [
"siliconcompiler>=0.28.1",
"Jinja2>=3.1.2",
"lambdapdk>=0.1.32",
"lambdalib>=0.2.10"
]
dynamic = ["version"]
[project.optional-dependencies]
# Dev dependencies.
dev = [
"flake8==7.1.1",
"pytest==8.3.3",
"pytest-xdist==3.6.1",
"tclint==0.4.2",
"codespell==2.3.0"
]
docs = [
"sphinx==8.1.3",
"sphinx-rtd-theme==3.0.1"
]
[project.urls]
"Homepage" = "https://github.com/siliconcompiler/scgallery"
"Bug Tracker" = "https://github.com/siliconcompiler/scgallery/issues"
[project.scripts]
sc-gallery = "scgallery.apps.sc_gallery:main"
[tool.pytest.ini_options]
markers = [
"eda: this test requires EDA tools installed to run."
]
testpaths = "tests"
[tool.tclint]
exclude = [
'.venv/',
'build/'
]
[tool.tclint.style]
line-length = 100
[tool.check-wheel-contents]
ignore = [
"W002"
]
[tool.codespell]
skip = '*.json,./scgallery/designs/*/src/*.v,./scgallery/designs/*/extra/*.v,./scgallery/designs/swerv/config/common_defines.vh'
count = true
quiet-level = 3