forked from P0cL4bs/wifipumpkin3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
77 lines (62 loc) · 2.32 KB
/
setup.py
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
import re
from distutils.dir_util import copy_tree
import sys
# check version the python install
if not (sys.version_info.major == 3 and sys.version_info.minor >= 7):
print("[!] Wifipumpkin3 requires Python 3.7 or higher!")
print(
"[*] You are using Python {}.{}.".format(
sys.version_info.major, sys.version_info.minor
)
)
sys.exit(1)
def version(version_file):
with open(version_file, "r") as f:
version_file_content = f.read()
version_match = re.search(
r"__version__\s*=\s*[\"\']([^\"\']+)", version_file_content
)
if version_match:
return version_match.groups()[0]
return None
with open("requirements.txt") as fp:
required = [line.strip() for line in fp if line.strip() != ""]
folders = ["config", "logs", "helps", "scripts", "exceptions"]
def create_user_dir_config():
user_config_dir = os.path.expanduser("~") + "/.config/wifipumpkin3"
if not os.path.isdir(user_config_dir):
os.makedirs(user_config_dir, exist_ok=True)
# force copy all files `config` to user_config_dir
for folder in folders:
copy_tree(folder, user_config_dir + "/{}".format(folder))
# create dir config
create_user_dir_config()
VERSION_FILE = "wifipumpkin3/_version.py"
wifipumpkin3_version = version(VERSION_FILE)
setup(
name="wifipumpkin3",
version=wifipumpkin3_version,
description="Powerful framework for rogue access point attack.",
author="Marcos Bomfim (mh4x0f) - P0cL4bs Team",
author_email="[email protected]",
url="https://github.com/P0cL4bs/wifipumpkin3",
license="apache 2.0",
long_description=open("README.md").read(),
install_requires=required,
scripts=["bin/sslstrip3", "bin/captiveflask"],
include_package_data=True,
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
python_requires=">=3.7",
classifiers=[
"Programming Language :: Python :: 3.7",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
],
entry_points={"console_scripts": ["wifipumpkin3=wifipumpkin3.__main__:main",],},
)