forked from outpost-os/python-dts-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (57 loc) · 1.55 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
# SPDX-FileCopyrightText: 2024 Ledger SAS
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "dts-utils"
description = "DTS utility python package"
dynamic = ["version"]
requires-python = ">= 3.10"
readme = "README.md"
authors = [
{email = "Ledger SAS <[email protected]>"},
]
license = {file = "LICENSE"}
dependencies = [
"devicetree>=0.0.2",
"Jinja2>3",
"rich",
]
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.urls]
Homepage = "https://github.com/outpost-os"
# Documentation =
Repository = "https://github.com/outpost-os/python-dts-utils"
Issues = "https://github.com/outpost-os/python-dts-utils/issues"
[project.scripts]
dts_dump = 'dts_utils.dump:main'
dts2src = 'dts_utils.builder:main'
[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",
]
[tool.setuptools_scm]
# intentionally blank