File: pyproject.toml

package info (click to toggle)
dt-schema 2023.11-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 728 kB
  • sloc: python: 2,025; sh: 8; makefile: 3
file content (44 lines) | stat: -rw-r--r-- 1,184 bytes parent folder | download
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
[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
write_to = "dtschema/version.py"

[project]
name = "dtschema"
description = "DeviceTree validation schema and tools"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE.txt"}
authors = [
  {name = "Rob Herring", email = "[email protected]"},
]

classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: BSD License",
    "Operating System :: OS Independent",
    "Intended Audience :: Developers",
]
dynamic = ["version"]

dependencies = [
    "ruamel.yaml>0.15.69",
    "jsonschema>=4.1.2,<4.18",
    "rfc3987",
    "pylibfdt",
]

[project.scripts]
dt-check-compatible = "dtschema.check_compatible:main"
dt-doc-validate = "dtschema.doc_validate:main"
dt-extract-example = "dtschema.extract_example:main"
dt-extract-props = "dtschema.extract_props:main"
dt-mk-schema = "dtschema.mk_schema:main"
dt-validate = "dtschema.dtb_validate:main"
dtb2py = "dtschema.dtb2py:main"

[project.urls]
Homepage="https://github.com/devicetree-org/dt-schema"
Source="https://github.com/devicetree-org/dt-schema"