-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.19 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>=70", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ocinferno"
version = "0.5.66"
description = "OCI offensive security assessment and enumeration framework."
readme = "README.md"
requires-python = ">=3.10"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
authors = [
{ name = "NetSPI" }
]
dependencies = [
"PyYAML==6.0.3",
"oci==2.172.0",
"requests==2.33.1",
"prettytable==3.17.0",
"oci-lexer-parser==0.1.2",
"pandas==2.3.3; python_version < '3.11'",
"pandas==3.0.1; python_version >= '3.11'",
"xlsxwriter==3.2.9"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Intended Audience :: Information Technology",
"Topic :: Security",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0"
]
[project.scripts]
ocinferno = "ocinferno.cli.main:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["ocinferno*"]
namespaces = true
[tool.setuptools.package-data]
"ocinferno.mappings" = ["*.json", "*.yaml"]
"ocinferno.modules.opengraph.utilities.helpers" = ["data/*.json"]