-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathsetup.cfg
More file actions
62 lines (58 loc) · 1.69 KB
/
setup.cfg
File metadata and controls
62 lines (58 loc) · 1.69 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
58
59
60
61
62
[metadata]
name = pkilint
author = DigiCert, Inc.
version = file: VERSION.txt
author_email = corey.bonnell@digicert.com
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.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14
[options]
zip_safe = True
packages = find:
python_requires = >=3.10
install_requires =
pyasn1
pyasn1-alt-modules >=0.4.3
pyasn1-fasder <0.2
cryptography >=39
iso3166
validators==0.22
python-dateutil
publicsuffixlist
iso4217
python-iso639
[options.packages.find]
exclude =
tests*
[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