-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
82 lines (71 loc) · 2.63 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
[tool.poetry]
name = "peakrdl_markdown"
version = "1.0.2"
description = "Export Markdown 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 :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
repository = "https://github.com/SystemRDL/PeakRDL-Markdown"
documentation = "https://peakrdl-markdown.readthedocs.io"
readme = "README.md"
packages = [{ include = "peakrdl_markdown", from = "src" }]
[tool.poetry.dependencies]
python = "^3.6.0"
systemrdl-compiler = "^1.25.0"
peakrdl = "^1.1.0"
py-markdown-table = "^0.3.3"
# Dependabot force updates for Python >3.6
gitpython = { version = "^3.1.41", python = ">=3.7" }
setuptools = { version = "^65.5.1", python = ">=3.7" }
pygments = { version = "^2.15.0", python = ">=3.7" }
jinja2 = { version = "^3.1.4", python = ">=3.7" }
[tool.poetry.group.dev.dependencies]
pre-commit = [
{ version = "^2.0.0", python = ">=3.7,<3.9" },
{ version = "^3.7.0", python = ">=3.9" },
]
[tool.poetry.group.lint.dependencies]
black = { version = "^24.4.0", python = ">=3.8" }
packaging = { version = "^24.0", python = ">=3.8" } # Required for black dependency resolution.
isort = { version = "^5.11.0", python = ">=3.7" }
mypy = "^0.971"
pydocstyle = "^6.1.1"
ruff = { version = "^0.3.7", python = ">=3.7" }
[tool.poetry.group.test.dependencies]
pytest = [
{ version = "^7.0.0", python = "<3.7" },
{ version = "^7.2.0", python = ">3.7,<=3.8" },
{ version = "^8.1.1", python = ">3.8" },
]
pytest-cov = [
{ version = "^4.0.0", python = "<3.8" },
{ version = "^5.0.0", python = ">=3.8" },
]
coverage = { version = "^6.3", python = ">=3.7" }
coveralls = { version = "^3.3.1", python = ">=3.7" }
# Dependabot force updates for Python >3.6
requests = [
{ version = "^2.31.0", python = ">=3.7,<3.8" },
{ version = "^2.32.0", python = ">=3.8" }
]
[tool.poetry.group.doc.dependencies]
linuxdoc = { version = "^20211220", python = ">=3.9" }
Sphinx = { version = "^7.2.6", python = ">=3.9" }
sphinx-rtd-theme = { version = "^2.0.0", python = ">=3.9" }
m2r2 = { version = "^0.3.3", python = ">=3.9" }
pygments-systemrdl = { version = "^1.2.0", python = ">=3.9"}
[tool.poetry.plugins."peakrdl.exporters"]
"markdown" = "peakrdl_markdown.__peakrdl__:Exporter"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.pydocstyle]
convention = "pep257"