-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.46 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cert-dossier"
version = "1.0.0.post1"
authors = [
{name = "Corey Bonnell", email = "corey.bonnell@digicert.com"},
{name = "Michael Lettona", email = "michael.lettona@digicert.com"},
{name = "Alex Campbell", email = "alex.campbell@digicert.com"},
]
description = "Generator for certificate reports conformant with CCADB IR Guidelines"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"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",
"Topic :: Security :: Cryptography",
]
keywords = ["certificates", "x509", "smime", "ssl", "tls", "cryptography"]
dependencies = [
"cryptography>=42",
"tqdm",
"httpx",
"python-dateutil",
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
]
[project.urls]
Homepage = "https://github.com/digicert/dossier"
Repository = "https://github.com/digicert/dossier"
Issues = "https://github.com/digicert/dossier/issues"
[project.scripts]
dossier = "dossier.main:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["dossier*"]