forked from tianocore/edk2-pytool-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
93 lines (83 loc) · 2.25 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "edk2-pytool-library"
maintainers = [{name = "EDK2 Pytool Maintainers", email = "[email protected]"}]
dynamic = ["version"]
description = "Python library supporting UEFI EDK2 firmware development"
readme = {file = "readme.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.11"
dependencies = [
"pyasn1 >= 0.4.8",
"pyasn1-modules >= 0.2.8",
"cryptography >= 39.0.1",
"joblib >= 1.3.2",
"GitPython >= 3.1.30",
"sqlalchemy >= 2.0.0",
"pygount >= 1.6.1",
"pywin32==308 ; sys_platform == 'win32'",
]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
[project.urls]
homepage = "https://github.com/tianocore/edk2-pytool-library/"
documentation = "https://www.tianocore.org/edk2-pytool-library/"
issues = "https://github.com/tianocore/edk2-pytool-library/issues/"
[project.optional-dependencies]
dev = [
"ruff == 0.6.9",
"pytest == 8.3.3",
"coverage == 7.6.1",
"pre-commit == 3.8.0",
]
publish = [
"setuptools == 75.1.0",
"build == 1.2.2.post1",
"twine == 5.1.1",
]
docs = [
"black==24.8.0",
"mkdocs==1.6.1",
"mkdocs-material==9.5.40",
"mkdocstrings[python]==0.26.1",
"mkdocstrings-python==1.11.1",
"markdown-include==0.8.1",
"mkdocs-gen-files==0.5.0",
"mkdocs-exclude==1.0.2",
"mkdocs-awesome-pages-plugin==2.9.3",
]
[tool.setuptools_scm]
[tool.coverage.run]
include = ["edk2toollib/*"]
[tool.ruff]
src = ["edk2toollib"]
line-length = 120
[lint]
ignore = ["ANN101"]
select = [
"E", # Pycodestyle errors
"W", # Pycodestyle warnings
"F", # PyFlakes
"D", # pydocstyle
"I", # isort
"PIE", # flake8 - PIEpip
"ANN",
]
[lint.flake8-annotations]
allow-star-arg-any = true
[lint.pydocstyle]
convention = "google"
[tool.pytest.ini_options]
testpaths = [
"tests.unit"
]