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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
[build-system]
requires = ["setuptools>=80.8", "cython", "setuptools-scm>=8.3.1"]
build-backend = "setuptools.build_meta"
[project]
name = "python-pkcs11"
description = "PKCS#11 support for Python"
readme = "README.rst"
authors = [
{name = "Andrey Kislyuk", email = "kislyuk@gmail.com"},
{name = "Danielle Madeley", email = "danielle@madeley.id.au"},
]
maintainers = [
{name = "Andrey Kislyuk", email = "kislyuk@gmail.com"},
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Security :: Cryptography",
]
dependencies = ["asn1crypto>=1.5.1"]
license = "MIT"
requires-python = ">=3.9"
dynamic = ["version"]
[project.urls]
Homepage = "https://python-pkcs11.readthedocs.io/en/latest/"
Documentation = "https://python-pkcs11.readthedocs.io/en/latest/"
Issues = "https://github.com/pyauth/python-pkcs11/issues"
Repository = "https://github.com/pyauth/python-pkcs11"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
extend-select = [
"B", # flake8-bugbear
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"G", # flake8-logging-format
"RUF", # ruff specific checks
]
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.setuptools]
ext-modules = [
{name = "pkcs11._pkcs11", sources = ["pkcs11/_pkcs11.pyx"]}
]
[tool.cibuildwheel]
skip = "cp3??t-*"
[tool.cibuildwheel.linux]
archs = ["auto64"]
[tool.cibuildwheel.windows]
archs = ["AMD64"]
[tool.cibuildwheel.macos]
archs = ["universal2"]
[tool.setuptools.packages.find]
include = ["pkcs11*"]
[tool.coverage.run]
plugins = ["Cython.Coverage"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"pragma: nocover",
"raise AssertionError",
"raise NotImplementedError",
"raise MemoryError",
"raise TypeError",
"TYPE_CHECKING",
"^\\s*\\.\\.\\.",
"noqa"
]
precision = 2
[dependency-groups]
testing = [
"cryptography>=44.0.0",
"parameterized>=0.9.0",
"pytest>=8.3.4",
]
coverage = [
{ include-group = "testing" },
"coverage>=7.9.1",
"pytest-cov>=4.0,<6.3",
"cython",
]
docs = [
"sphinx>=7.4.7",
"sphinx-rtd-theme>=3.0.2",
]
lint = [
"ruff>=0.8.3",
]
release = [
"setuptools>=80.8",
"setuptools-scm>=8.3.1",
"cython",
]
docs-build = [
{ include-group = "docs" },
"python-pkcs11",
]
dev = [
{ include-group = "docs" },
{ include-group = "testing" },
{ include-group = "lint" },
{ include-group = "release" },
]
[tool.setuptools_scm]
|