-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
107 lines (98 loc) · 2.47 KB
/
pyproject.toml
File metadata and controls
107 lines (98 loc) · 2.47 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gitexpose"
version = "0.1.0"
description = "Advanced security scanner for exposed files, vulnerable frameworks, AI infrastructure, and supply chain threats"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{name = "GitExpose Contributors"}
]
keywords = [
"security",
"scanner",
"pentesting",
"git",
"exposure",
"vulnerability",
"CVE-2025-55182",
"react2shell",
"ml-security",
"llm-security",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"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",
"Topic :: Security",
"Topic :: System :: Networking :: Monitoring",
]
dependencies = [
"aiohttp>=3.9.0",
"click>=8.1.0",
"colorama>=0.4.6",
]
[project.optional-dependencies]
advanced = [
"aiofiles>=23.2.0",
"GitPython>=3.1.40",
"rich>=13.7.0",
]
cloud = [
"boto3>=1.34.0",
"google-cloud-compute>=1.19.0",
"azure-mgmt-compute>=30.0.0",
]
full = [
"aiofiles>=23.2.0",
"GitPython>=3.1.40",
"rich>=13.7.0",
"boto3>=1.34.0",
"shodan>=1.31.0",
]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"aioresponses>=0.7.4",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"ruff>=0.1.0",
]
[project.scripts]
gitexpose = "gitexpose.cli:main"
[project.urls]
Homepage = "https://github.com/fevra-dev/GitExpose"
Documentation = "https://github.com/fevra-dev/GitExpose/tree/main/docs"
Issues = "https://github.com/fevra-dev/GitExpose/issues"
Changelog = "https://github.com/fevra-dev/GitExpose/releases"
[tool.setuptools.packages.find]
where = ["."]
include = ["gitexpose*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.black]
line-length = 100
target-version = ["py39", "py310", "py311", "py312"]
[tool.ruff]
line-length = 100
select = ["E", "F", "I", "N", "W"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true