forked from digicert/pkilint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
47 lines (44 loc) · 1.38 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
[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 :: 4 - Beta
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
[options]
zip_safe = True
packages = find:
python_requires = >=3.9
install_requires =
pyasn1
pyasn1-alt-modules
pyyaml
cryptography
iso3166
validators
python-dateutil
publicsuffixlist
[options.extras_require]
dev = pytest
[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