Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
derv82
GitHub Repository: derv82/wifite2
Path: blob/master/setup.py
400 views
1
from distutils.core import setup
2
3
from wifite.config import Configuration
4
5
setup(
6
name='wifite',
7
version=Configuration.version,
8
author='derv82',
9
author_email='[email protected]',
10
url='https://github.com/derv82/wifite2',
11
packages=[
12
'wifite',
13
'wifite/attack',
14
'wifite/model',
15
'wifite/tools',
16
'wifite/util',
17
],
18
data_files=[
19
('share/dict', ['wordlist-top4800-probable.txt'])
20
],
21
entry_points={
22
'console_scripts': [
23
'wifite = wifite.wifite:entry_point'
24
]
25
},
26
license='GNU GPLv2',
27
scripts=['bin/wifite'],
28
description='Wireless Network Auditor for Linux',
29
#long_description=open('README.md').read(),
30
long_description='''Wireless Network Auditor for Linux.
31
32
Cracks WEP, WPA, and WPS encrypted networks.
33
34
Depends on Aircrack-ng Suite, Tshark (from Wireshark), and various other external tools.''',
35
classifiers = [
36
"Programming Language :: Python :: 2.7",
37
"Programming Language :: Python :: 3"
38
]
39
)
40
41