-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (62 loc) · 2.11 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nhinsight"
version = "0.2.2"
description = "Discover risky non-human identities and privilege paths across AWS, Azure, GCP, GitHub, and Kubernetes"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [{name = "cvemula1", email = "cvemula1@users.noreply.github.com"}]
keywords = ["security", "identity", "nhi", "aws", "gcp", "azure", "kubernetes", "github", "devsecops"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Topic :: System :: Systems Administration",
"Typing :: Typed",
]
dependencies = [
"boto3>=1.28",
]
[project.optional-dependencies]
azure = ["azure-identity>=1.15", "azure-mgmt-authorization>=4.0", "requests>=2.28"]
github = ["PyGithub>=2.0"]
kubernetes = ["kubernetes>=28.0"]
gcp = ["google-api-python-client>=2.0", "google-auth>=2.0"]
explain = ["openai>=1.0"]
all = ["nhinsight[azure,github,kubernetes,gcp,explain]"]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.1",
"moto[iam]>=4.2",
]
[project.scripts]
nhinsight = "nhinsight.cli:main"
[project.urls]
Homepage = "https://github.com/cvemula1/NHInsight"
Documentation = "https://github.com/cvemula1/NHInsight#quick-start"
Repository = "https://github.com/cvemula1/NHInsight"
Changelog = "https://github.com/cvemula1/NHInsight/releases"
Issues = "https://github.com/cvemula1/NHInsight/issues"
[tool.setuptools.packages.find]
include = ["nhinsight*"]
[tool.ruff]
target-version = "py39"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
testpaths = ["tests"]