-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
85 lines (78 loc) · 2.15 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
84
85
[build-system]
requires = ["flit_core>=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "virtue-skill"
dependencies = [
"typer >= 0.6.1, < 1.0.0",
"rich >= 12.5.1, < 13.0.0",
"pluggy >= 1.0.0, < 2.0.0",
"toml == 0.10.2",
]
authors = [
{name="Curtis Mayberry", email="[email protected]"},
]
maintainers = [
{name="Curtis Mayberry", email="[email protected]"},
]
readme = "README.md"
license = {file="LICENSE"}
requires-python = ">=3.7"
classifiers = [
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Other Scripting Engines",
"Programming Language :: Other",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit",
]
keywords = [
"circuit design",
"design automation",
"Cadence",
"virtuoso",
"SKILL",
"Python"
]
dynamic = ["version", "description"]
[project.urls]
"Home" = "http://www.cascode-labs.org/virtue/"
"Documentation" = "http://www.cascode-labs.org/virtue/"
"Source" = "https://github.com/cascode-labs/virtue"
[project.scripts]
virtue = "virtue.cli:app"
[tool.flit.module]
name = "virtue"
[project.optional-dependencies]
optional = ["softworks", "skillbridge"]
dev = [
"pre-commit == 2.20.0",
# Build
"flit == 3.7.1",
"pip == 22.2.2",
"pyinstaller == 5.11.0",
# Testing
"pytest >=7.1.2",
"pylint >= 2.14.4",
"ruff >= 0.3.0",
# Docs
"pydata-sphinx-theme == 0.15.2",
"sphinx_design == 0.5.0",
"sphinx_copybutton == 0.5.2",
"sphinx-autobuild == 2024.2.4",
"sphinx-github-changelog == 1.2.1",
"sphinx-sitemap == 2.2.0",
"sphinx-click == 5.1.0",
]
[tool.virtue.build]
build_dirpath = "dist/skill_build"
source_dirpath = "virtue"