-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpyproject.toml
29 lines (27 loc) · 964 Bytes
/
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cve-prioritizer"
version = "1.9.0"
description = "Streamline vulnerability patching with CVSS, EPSS, and CISA's Known Exploited Vulnerabilities Prioritize actions based on real-time threat information, gain a competitive advantage, and stay informed about the latest trends."
readme = "README.md"
license = { text = "BSD 3-Clause"}
authors = [
{name = "Mario Rojas", email = "[email protected]"},
]
maintainers = [
{name = "Mario Rojas", email = "[email protected]"}
]
dependencies = [
"click>=8.0.3",
"pandas>=1.5.3",
"python-dotenv>=0.19.2",
"requests>=2.32.3",
"termcolor>=2.2.0"
]
requires-python = ">=3.8"
keywords = ["CVE", "CVSS", "EPSS", "CISA", "Prioritize", "Vulnerability"]
[project.scripts]
cve-prioritizer = "cve_prioritizer.cve_prioritizer:main"
cve_prioritizer = "cve_prioritizer.cve_prioritizer:main"