-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.16 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.9.11"
description = "CLI tool for 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",
]
packages = [
{ include = "dovado_rtl", from = "src" },
{ include = "vhdl" },
{ include = "verilog" },
{ include = "xdc" },
{ include = "tcl" },
]
[tool.poetry.dependencies]
python = ">=3.6.1,<4.0.0"
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.9.3"
dataclasses = { version = "^0.8", python = "~3.6" }
typer = "^0.3.2"
#movado = { path = "../movado/dist/Movado-0.6.3-py3-none-any.whl" }
importlib-resources = "^5.1.4"
movado = "^0.6.0"
[tool.poetry.scripts]
dovado = "dovado_rtl.main:main"
[tool.black]
line-length = 79
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"