-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.64 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "svdsuite"
dynamic = ["version"]
description = "A Python package to parse, process, manipulate, validate, and generate CMSIS SVD files"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["CMSIS", "SVD", "Embedded Systems", "ARM", "Cortex-M", "Microcontroller"]
authors = [
{ name = "Christian Kudera" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
dependencies = ["lxml>=4.9.3"]
[project.optional-dependencies]
dev = ["pytest>=8.1.1"]
[project.urls]
Documentation = "https://github.com/ARMify-Project/SVDSuite?tab=readme-ov-file"
Issues = "https://github.com/ARMify-Project/SVDSuite/issues"
Source = "https://github.com/ARMify-Project/SVDSuite"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"svdsuite" = ["py.typed", "*.xsd"]
[tool.setuptools_scm]
write_to = "src/svdsuite/_version.py"
[tool.pytest.ini_options]
pythonpath = "src"
[tool.pylint.MASTER]
extension-pkg-whitelist="lxml"
init-hook="import sys; sys.path.append('./src')"