-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
86 lines (74 loc) · 2.08 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
[build-system]
requires = [
"setuptools>=67.4",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "pyhanko-eoi-plugin"
description = "pyHanko plugin for Slovenian eOI cards"
authors = [{name = "Miha Šetina", email = "[email protected]"}]
maintainers = [{name = "Miha Šetina", email = "[email protected]"}]
license = {text = "MIT"}
keywords = [
"signature",
"pdf",
"digital-signature",
"pkcs11",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.10"
dependencies = [
"pyHanko[pkcs11]>=0.23.0",
]
version = "0.1.2"
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
Homepage = "https://github.com/msetina/pyhanko-eoi-plugin"
"Source Code" = "https://github.com/msetina/pyhanko-eoi-plugin"
"Issue Tracker" = "https://github.com/msetina/pyhanko-eoi-plugin/issues"
[project.entry-points."pyhanko.cli_plugin.signing"]
eoi = "pyhanko_eoi.cli:EOIPlugin"
[project.optional-dependencies]
testing = [
"pyhanko-eoi-plugin",
"pytest>=6.1.1",
"pytest-cov>=4.0,<6.1",
]
mypy = [
"pyhanko-eoi-plugin",
"types-PyYAML",
]
[tool.setuptools]
include-package-data = false
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
include = ["pyhanko_eoi*"]
exclude = ["pyhanko_eoi_tests*"]
[tool.setuptools.package-data]
pyhanko_eoi = ["py.typed"]
[tool.mypy]
files = "pyhanko_eoi"
[[tool.mypy.overrides]]
module = ["pkcs11.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
log_format = "%(asctime)s %(levelname)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
log_cli = true
log_cli_level = "INFO"
norecursedirs = "testdata"
testpaths = "pyhanko_eoi_tests"