forked from jevinskie/litejtag-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
90 lines (80 loc) · 3.25 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
86
87
88
89
90
[tool.poetry]
name = "litejtag-ext"
version = "0.1.0"
description = ""
authors = ["Jevin Sweval <[email protected]>"]
[tool.poe.tasks]
test = "pytest"
test-v = "pytest -vvvv"
test-vv = "pytest -vvvv --capture=tee-sys"
print-reg = "poetry run ./examples/jtag_hello_max10_dev_kit.py"
ipython = "poetry run ipython"
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
testpaths = [
"tests",
]
[tool.poetry.dependencies]
python = "^3.9"
rich = "^10.4.0"
pretty-errors = "^1.2.23"
pprintpp = "^0.4.0"
pp-ez = "^0.2.0"
bitstring = "^3.1.7"
attrs = "^21.2.0"
poethepoet = "^0.10.0"
litedram = { path = "../litedram", develop = true }
liteeth = { path = "../liteeth", develop = true }
litehyperbus = { path = "../litehyperbus", develop = true }
liteiclink = { path = "../liteiclink", develop = true }
litejesd204b = { path = "../litejesd204b", develop = true }
litepcie = { path = "../litepcie", develop = true }
litesata = { path = "../litesata", develop = true }
litescope = { path = "../litescope", develop = true }
litesdcard = { path = "../litesdcard", develop = true }
litespi = { path = "../litespi", develop = true }
litevideo = { path = "../litevideo", develop = true }
litex = { path = "../litex", develop = true }
litex-boards = { path = "../litex-boards", develop = true }
migen = { path = "../migen", develop = true }
nmigen = { path = "../nmigen", develop = true }
pythondata-cpu-blackparrot = { path = "../pythondata-cpu-blackparrot", develop = true }
pythondata-cpu-cv32e40p = { path = "../pythondata-cpu-cv32e40p", develop = true }
pythondata-cpu-lm32 = { path = "../pythondata-cpu-lm32", develop = true }
pythondata-cpu-microwatt = { path = "../pythondata-cpu-microwatt", develop = true }
pythondata-cpu-minerva = { path = "../pythondata-cpu-minerva", develop = true }
pythondata-cpu-mor1kx = { path = "../pythondata-cpu-mor1kx", develop = true }
pythondata-cpu-picorv32 = { path = "../pythondata-cpu-picorv32", develop = true }
pythondata-cpu-rocket = { path = "../pythondata-cpu-rocket", develop = true }
pythondata-cpu-serv = { path = "../pythondata-cpu-serv", develop = true }
pythondata-cpu-vexriscv = { path = "../pythondata-cpu-vexriscv", develop = true }
pythondata-cpu-vexriscv-smp = { path = "../pythondata-cpu-vexriscv-smp", develop = true }
pythondata-misc-opentitan = { path = "../pythondata-misc-opentitan", develop = true }
pythondata-misc-tapcfg = { path = "../pythondata-misc-tapcfg", develop = true }
pythondata-misc-usb_ohci = { path = "../pythondata-misc-usb_ohci", develop = true }
pythondata-software-compiler_rt = { path = "../pythondata-software-compiler_rt", develop = true }
cocotb = { path = "../cocotb", develop = true }
cocotb-coverage = "^1.1.0"
pydigitalwavetools = {git = "https://github.com/Nic30/pyDigitalWaveTools"}
importlib-resources = "^5.2.0"
rpyc = "^5.0.1"
pyftdi = "^0.53.2"
toolz = "^0.11.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-sugar = "^0.9.4"
pytest-mock = "^3.6.1"
tox = "^3.23.1"
pytest-clarity = "^0.3.0-alpha.0"
pytest-pycharm = "^0.7.0"
pytest-randomly = "^3.8.0"
pytest-cov = "^2.11.1"
mypy = "^0.812"
scalene = "^1.3.12"
pprofile = "^2.0.5"
py-spy = "^0.3.7"
# py-spy = { path = "../py-spy", develop = true }
pyinstrument = "^3.4.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"