-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
44 lines (38 loc) · 1.01 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
[project]
name = "svada"
dynamic = ["version"]
authors = [{ name = "Nordic Semiconductor ASA" }]
description = "SVD parsing for Python."
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Build Tools",
]
requires-python = ">=3.10"
dependencies = [
"lxml~=5.3",
"numpy~=2.1",
"typing_extensions>=4.4.0",
]
[project.urls]
homepage = "https://github.com/nordicsemiconductor/svada"
repository = "https://github.com/nordicsemiconductor/svada.git"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
packages = ["src/svd"]
[tool.hatch.build.targets.wheel]
packages = [
# Used when building the wheel from the sdist
"svd",
# Used when building the wheel directly
"src/svd"
]
[tool.mypy]
disallow_untyped_defs = true