-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
88 lines (78 loc) · 2.47 KB
/
setup.py
File metadata and controls
88 lines (78 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
#!/usr/bin/env python3
"""
Setup script for GitLab Device Code Phishing Framework.
"""
from setuptools import setup, find_packages
from pathlib import Path
# Read the README file for long description
readme_file = Path(__file__).parent / "README.md"
long_description = ""
if readme_file.exists():
with open(readme_file, "r", encoding="utf-8") as f:
long_description = f.read()
# Read requirements from requirements.txt
requirements_file = Path(__file__).parent / "requirements.txt"
requirements = []
if requirements_file.exists():
with open(requirements_file, "r", encoding="utf-8") as f:
requirements = [
line.strip()
for line in f
if line.strip() and not line.startswith("#")
]
setup(
name="gitlab-phishing-framework",
version="1.0.0",
description="GitLab Device Code Phishing Framework for authorized security testing",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Maldev-Academy/GitLabDeviceCodePhishing/",
license="MIT",
# Package configuration
packages=find_packages(exclude=["tests", "tests.*", "docs"]),
include_package_data=True,
package_data={
"src.web": [
"templates/*.html",
"static/css/*.css",
"static/js/*.js"
],
"config": ["*.json"]
},
# Python version requirement
python_requires=">=3.8",
# Dependencies
install_requires=requirements,
# Entry points for CLI
entry_points={
"console_scripts": [
"gitlab-phishing=main:main",
],
},
# Classifiers for PyPI
classifiers=[
"Development Status :: 4 - Beta",
"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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Security",
"Topic :: Software Development :: Testing",
],
# Keywords for discovery
keywords=[
"gitlab",
"oauth",
"device-code",
"phishing",
"security",
"penetration-testing",
"red-team",
"security-testing"
],
)