-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.35 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 = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "viper-ic"
authors = [
{name = "Curtis Mayberry", email = "Curtisma3@gmail.com"},
]
readme = "README.md"
classifiers = [
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Operating System :: POSIX",
"Environment :: Console",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"Typing :: Typed",
"Natural Language :: English",
]
requires-python = ">=3.8"
dynamic = ["version", "description"]
dependencies = [
"click > 8.1, < 9",
"rich >= 12.5, < 13",
"pydantic >= 1.8, < 2",
"toml >= 0.10, < 1",
]
[project.optional-dependencies]
dev = [
"pytest == 7.1",
"pylint == 2.15",
"pytest-pylint == 0.18",
"pre-commit == 2.20",
"pyinstaller == 5.6",
"flit == 3.7",
"mkdocs == 1.3",
"mkdocs-click == 0.6",
"mkdocs-material == 8.5.2",
"markdown-mdantic == 1.3.3"
]
[project.urls]
Documentation = "http://www.cascode-labs.org/viper/"
Source = "https://github.com/cascode-labs/viper"
[project.scripts]
viper="viper.cli:cli"
[tool.flit.module]
name = "viper"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]