forked from kimocoder/wifite2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (41 loc) · 1.36 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
#! /usr/bin/env python
try:
from setuptools import setup
except:
raise ImportError("setuptools is required to install wifite2")
from wifite.config import Configuration
setup(
name='wifite',
version=Configuration.version,
author='kimocoder',
author_email='[email protected]',
url='https://github.com/kimocoder/wifite2',
packages=[
'wifite',
'wifite/attack',
'wifite/model',
'wifite/tools',
'wifite/util',
],
data_files=[
('share/dict', ['wordlist-probable.txt'])
],
license='GNU GPLv2',
scripts=['bin/wifite'],
description='Wireless Network Auditor for Linux & Android',
# long_description=open('README.md').read(),
long_description='''Wireless Network Auditor for Linux & Android.
Sniff, Injects and Cracks WEP, WPA/2, and WPS encrypted networks.
Depends on Aircrack-ng Suite, Tshark (from Wireshark),
and various other external tools.''',
classifiers=[
"Programming Language :: Python :: 3"
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
)