-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
106 lines (94 loc) · 2.53 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
94
95
96
97
98
99
100
101
102
103
104
105
106
[build-system]
requires = [
"setuptools>=67.4",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "certomancer"
dynamic = ["version"]
authors = [{name = "Matthias Valvekens", email = "dev@mvalvekens.be"}]
license = {text = "MIT"}
description = "PKI testing tool"
keywords = ["pki", "testing"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"asn1crypto==1.5.*",
"click>=7.1.2",
"pyyaml>=5.4.1",
"python-dateutil>=2.8.1",
"tzlocal>=2.1",
"cryptography>=3.4.7"
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/MatthiasValvekens/certomancer"
[project.optional-dependencies]
requests-mocker = ["requests-mock>=1.8.0"]
web-api = ["Werkzeug>=2.2.3", "Jinja2>=2.11.3"]
pkcs11 = ["python-pkcs11~=0.7.0"]
testing-minimal = [
"pytest>=6.1.1",
"pytz>=2020.1",
"freezegun>=1.1.0",
"requests>=2.0.0",
"pytest-cov~=4.0.0",
"pytest-asyncio==0.21.0",
"certomancer[requests-mocker,web-api]"
]
testing = [
"pyhanko-certvalidator==0.26.5",
"certomancer[testing-minimal,pkcs11]"
]
mypy = [
"types-requests",
"types-python-dateutil",
"types-PyYAML",
"types-tzlocal",
"certomancer[testing]"
]
[project.scripts]
certomancer = "certomancer.__main__:launch"
[tool.setuptools]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "certomancer.version.__version__"}
[tool.setuptools.packages.find]
include = ["certomancer*"]
exclude = ["tests*"]
[tool.setuptools.package-data]
"certomancer.integrations" = ["animator_templates/*.html"]
certomancer = ["py.typed"]
[tool.mypy]
files = 'certomancer'
[[tool.mypy.overrides]]
module = [
"asn1crypto.*",
"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"
testpaths = "tests"
asyncio_mode = "strict"
markers = [
"config_context: require a specific configuration file"
]