forked from dpaletti/dovado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.09 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
[tool.poetry]
name = "dovado-rtl"
version = "0.10.12"
description = "RTL Design Space Exploration on top of Vivado"
authors = ["Daniele Paletti <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/DPaletti/dovado"
repository = "https://github.com/DPaletti/dovado"
keywords = [
"Xilinx",
"Vivado",
"TCL",
"VHDL",
"Verilog",
"RTL",
"Design Space",
"Genetic Algorithm",
]
[tool.poetry.dependencies]
python = "^3.9"
pathvalidate = "^2.3.0"
BeautifulSoup4 = "^4.9.1"
lxml = "^4.5.2"
pyyaml = "^5.3.1"
pexpect = "^4.8.0"
pymoo = "^0.5.0"
antlr4-python3-runtime = "4.11.1"
dataclasses = { version = "^0.8", python = "~3.6" }
typer = "^0.3.2"
importlib-resources = "^5.1.4"
nacolla = "0.1.5"
movado = "0.7.4"
numpy = "1.23.4"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
[tool.poetry.scripts]
dovado = "dovado_rtl.main:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
addopts = "--ignore=tests/resources --rootdir=tests"
[tool.pyright]
exclude = ["**/tests/resources"]