-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (29 loc) · 861 Bytes
/
pyproject.toml
File metadata and controls
31 lines (29 loc) · 861 Bytes
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
[build-system]
requires = ["black", "flit_core >=2,<4", "isort"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "svdtools"
# dist-name = "svdtools"
author = "Adam Greig"
author-email = "adam@adamgreig.com"
maintainer = "Nicolas Stalder"
maintainer-email = "n@stalder.io"
home-page = "https://github.com/rust-embedded/svdtools"
requires-python = ">=3.9"
description-file = "README.md"
requires = [
"click ~= 8.0",
"PyYAML >= 5.3, < 7",
"lxml ~= 4.6",
"braceexpand ~= 0.1.7",
]
classifiers=[
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
]
[tool.flit.scripts]
svd = "svdtools.cli:svdtools_cli"