-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (57 loc) · 1.78 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
[tool.poetry]
name = "peakrdl_python_simple"
version = "0.2.14"
description = "Export Python description from the systemrdl-compiler register model"
authors = ["Marek Pikuła <[email protected]>"]
maintainers = ["Marek Pikuła <[email protected]>"]
license = "GPL-3.0-only"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
repository = "https://github.com/MarekPikula/PeakRDL-Python-simple"
documentation = "https://peakrdl-python-simple.readthedocs.io"
readme = "README.md"
packages = [
{ include = "peakrdl_python_simple", from = "src"}
]
[tool.poetry.dependencies]
python = "^3.7.2"
systemrdl-compiler = { version = "^1.25.0", optional = true }
peakrdl = { version = "^0.9.0", optional = true }
loguru = { version = "^0.6.0", optional = true }
[tool.poetry.extras]
generator = ["systemrdl-compiler"]
cli = ["peakrdl", "systemrdl-compiler"]
tracing = ["loguru"]
[tool.poetry.group.dev.dependencies]
peakrdl = "^0.9.0"
pre-commit = "^2.20.0"
[tool.poetry.group.lint.dependencies]
black = "^22.8.0"
isort = "^5.10.1"
mypy = "^0.971"
pycodestyle = "^2.9.1"
pydocstyle = "^6.1.1"
pylint = "^2.15.3"
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
pytest-cov = "^4.0.0"
pylint-pytest = "^1.1.2"
[tool.poetry.group.doc.dependencies]
coveralls = "^3.3.1"
linuxdoc = "^20211220"
pygments-systemrdl = "^1.2.0"
Sphinx = "^5.2.3"
sphinx-rtd-theme = "^1.0.0"
[tool.poetry.plugins."peakrdl.exporters"]
"python-simple" = "peakrdl_python_simple.__peakrdl__:Exporter"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.pydocstyle]
convention = "pep257"