-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.49 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "endesive"
description = "Library for digital signing and verification of digital signatures in mail, PDF and XML documents."
authors = [{ name = "Grzegorz Makarewicz", email = "mak@trisoft.com.pl" }]
maintainers = [{ name = "Grzegorz Makarewicz", email = "mak@trisoft.com.pl" }]
readme = "README.rst"
version = "2.19.3"
license = "MIT"
license-files = ["LICENSE", "LICENSE.pdf-annotate", "LICENSE.pyfpdf", "LICENSE.pypdf2"]
requires-python = ">=3.0"
classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Email",
"Topic :: Security :: Cryptography",
"Topic :: Office/Business",
"Topic :: Text Processing",
"Topic :: Multimedia :: Graphics",
]
dependencies = [
"cryptography",
"asn1crypto",
"lxml",
"pykcs11",
"Pillow",
"requests",
"paramiko"
]
[project.urls]
Source = "https://github.com/m32/endesive"
"Bug Reports" = "https://github.com/m32/endesive/issues"
[project.optional-dependencies]
dev = [
"pytest-cov",
"wheel"
]
docs = [
"sphinx",
"sphinx_rtd_theme"
]
[tool.check-wheel-contents]
package = "./endesive"
[tool.pytest.ini_options]
filterwarnings = ["error"]
testpaths = ["tests"]