-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
59 lines (50 loc) · 1.31 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
# SPDX-FileCopyrightText: 2023 - 2024 Ledger SAS
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "svd2json"
description = "Convert SVD file to json"
dynamic = ["version"]
requires-python = ">= 3.10"
readme = "README.md"
authors = [
{email = "Ledger SAS <[email protected]>"},
]
license = {file = "LICENSES/Apache-2.0.txt"}
dependencies = []
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.scripts]
svd2json = "svd2json:run"
[project.optional-dependencies]
devel = [
"flake8>=7.0,<8.0",
"mypy>=1.8.0",
"pytest>=4.6",
"pytest-cov>=5.0.0",
"black>=24.2,<25.0",
"pydoclint",
"flake8-docstrings",
]
doc = [
"Sphinx>=7.2.0",
"sphinx-rtd-theme>=2.0.0",
"sphinx-simplepdf>=1.6.0",
"sphinx-autoapi",
]
license = [
"reuse>=3.0.0",
]
[tool.setuptools_scm]
# intentionally blank