forked from digicert/pkilint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
60 lines (57 loc) · 1.79 KB
/
setup.cfg
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
[metadata]
name = pkilint
author = DigiCert, Inc.
version = file: VERSION.txt
author_email = [email protected]
url = https://github.com/digicert/pkilint
description = A framework for verifying PKI structures
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
platform = any
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Information Technology
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
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
[options]
zip_safe = True
packages = find:
python_requires = >=3.9
install_requires =
pyasn1
pyasn1-alt-modules >=0.4.3
pyasn1-fasder
cryptography >=39
iso3166
# version is pinned due to https://github.com/python-validators/validators/issues/346
validators==0.22
python-dateutil
publicsuffixlist
iso4217
python-iso639
[options.extras_require]
rest =
fastapi
dev =
pytest
%(rest)s
httpx <1
black
[options.entry_points]
console_scripts =
lint_cabf_serverauth_cert = pkilint.bin.lint_cabf_serverauth_cert:main
lint_crl = pkilint.bin.lint_crl:main
lint_pkix_cert = pkilint.bin.lint_pkix_cert:main
lint_pkix_signer_signee_cert_chain = pkilint.bin.lint_pkix_signer_signee_cert_chain:main
lint_cabf_smime_cert = pkilint.bin.lint_cabf_smime_cert:main
lint_ocsp_response = pkilint.bin.lint_ocsp_response:main
lint_etsi_cert = pkilint.bin.lint_etsi_cert:main
lint_pkioverheid_cert = pkilint.bin.lint_pkioverheid_cert:main