-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
56 lines (50 loc) · 1.61 KB
/
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
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version", "readme"]
name = "tenable_aws_sechub"
description = "Tenable Vulnerability Management to AWS Security Hub"
authors = [
{name = "Tenable, Inc.", email = "[email protected]" }
]
keywords = [
"tenable",
"tenable vulnerability management",
"tenable security center",
"tenable.io",
"tenable.sc",
"aws",
"security hub"
]
license = {text = "MIT License"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"Topic :: System :: Systems Administration",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"arrow>=1.3.0",
"restfly>=1.4.5",
"typer>=0.9.0",
"tomlkit>=0.12.4",
"rich>=13.3.1",
"boto3>=1.34.68",
"pytenable>=1.5.0",
]
[project.urls]
Homepage = "https://github.com/tenable/Security-Hub"
Repository = "https://github.com/tenable/Security-Hub"
Issues = "https://github.com/tenable/Security-Hub/issues"
Changelog = "https://github.com/tenable/Security-Hub/blob/main/CHANGELOG.md"
[project.scripts]
tenb2jira = "tenable_aws_sechub.cli:app"
[tool.setuptools.dynamic]
version = {attr = "tenable_aws_sechub.version.version"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools.packages.find]
include = ["tenable_aws_sechub*"]