-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
executable file
·45 lines (33 loc) · 926 Bytes
/
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
#!/usr/bin/env python3
"""
Setup
Automation of MitM Attack on WiFi Networks
Bachelor's Thesis UIFS FIT VUT
Martin Vondracek
2016
"""
from setuptools import setup
__author__ = 'Martin Vondracek'
__email__ = '[email protected]'
def readme():
with open('README.md') as f:
return f.read()
setup(
name='wifimitm',
description="Automation of MitM Attack on WiFi Networks, Bachelor's Thesis, UIFS FIT VUT, 2016",
long_description=readme(),
author=__author__,
author_email=__email__,
url='http://mvondracek.github.io/wifimitm/',
version='0.6.0',
packages=['wifimitm', 'wifimitm.tests'],
setup_requires=['setuptools_git >= 0.3'],
install_requires=['netifaces', 'coloredlogs'],
test_suite='wifimitm.tests',
include_package_data=True,
entry_points={
'console_scripts': [
'wifimitmcli = wifimitm.wifimitmcli:main',
]
}
)