forked from tianocore/edk2-pytool-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (72 loc) · 1.99 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
[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"}
dependencies = [
"pyasn1 >= 0.4.8",
"pyasn1-modules >= 0.2.8",
"cryptography >= 39.0.1",
]
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
[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.0.277",
"pytest == 7.4.0",
"coverage == 7.2.7",
"pre-commit == 3.3.3",
]
publish = [
"setuptools == 68.0.0",
"build == 0.10.0",
"twine == 4.0.2",
]
docs = [
"black==23.3.0",
"mkdocs==1.4.3",
"mkdocs-material==9.1.18",
"mkdocstrings[python]==0.22.0",
"mkdocstrings-python==1.1.2",
"markdown-include==0.8.1",
"mkdocs-gen-files==0.5.0",
"mkdocs-exclude==1.0.2",
"mkdocs-awesome-pages-plugin==2.9.1",
]
[tool.setuptools_scm]
[tool.coverage.run]
include = ["edk2toollib/*"]
[tool.ruff]
src = ["edk2toollib"]
select = [
"E", # Pycodestyle errors
"W", # Pycodestyle warnings
"F", # PyFlakes
"D", # pydocstyle
"I", # isort
"PIE", # flake8 - PIE
]
line-length = 120
[tool.ruff.pydocstyle]
convention = "google"
[tool.pytest.ini_options]
testpaths = [
"tests.unit"
]