-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
77 lines (75 loc) · 2.16 KB
/
setup.py
File metadata and controls
77 lines (75 loc) · 2.16 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
"""Setup script for GitExpose."""
from setuptools import setup, find_packages
setup(
name="gitexpose",
version="0.1.0",
description="Advanced security scanner for exposed files, vulnerable frameworks, AI infrastructure, and supply chain threats",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="GitExpose Contributors",
license="MIT",
packages=find_packages(),
python_requires=">=3.9",
install_requires=[
"aiohttp>=3.9.0",
"click>=8.1.0",
"colorama>=0.4.6",
],
extras_require={
"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",
],
},
entry_points={
"console_scripts": [
"gitexpose=gitexpose.cli:main",
],
},
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",
],
keywords=[
"security",
"scanner",
"pentesting",
"git",
"vulnerability",
"CVE-2025-55182",
"react2shell",
"ml-security",
],
)