-
Notifications
You must be signed in to change notification settings - Fork 51
/
pyproject.toml
79 lines (70 loc) · 2 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version", "readme"]
name = "tenb2jira"
description = "Tenable Vulnerability Management to Jira Cloud issue manager"
authors = [
{name = "Tenable, Inc.", email = "[email protected]" }
]
keywords = [
"tenable",
"tenable vulnerability management",
"tenable security center",
"tenable.io",
"tenable.sc",
"jira",
"jira cloud"
]
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",
"pytenable>=1.4.20",
"SQLAlchemy>=2.0.28",
"pydantic>=2.7.1"
]
[project.urls]
Homepage = "https://github.com/tenable/integration-jira-cloud"
Repository = "https://github.com/tenable/integration-jira-cloud"
Issues = "https://github.com/tenable/integration-jira-cloud/issues"
Changelog = "https://github.com/tenable/integration-jira-cloud/blob/master/CHANGELOG.md"
[project.scripts]
tenb2jira = "tenb2jira.cli:app"
[tool.setuptools.dynamic]
version = {attr = "tenb2jira.version.version"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools.packages.find]
include = ["tenb2jira*"]
[tool.ruff]
target-version = "py312"
exclude = [
".nova",
".github",
".git",
".pytest_cache",
"__pycache__"
]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B"]
fixable = [ "ALL" ]
unfixable = [ "B" ]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402"]
"**/{tests,docs,tools}/*" = ["E402"]
[tool.flake8]
max-line-length = 88
count = true