-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
28 lines (27 loc) · 873 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
from setuptools import setup, find_packages
setup(name='WiFiSuite',
version='v 1.05282017',
description='Enterprise WPA Wireless Tool suite ',
classifiers=[
'Development Status :: 1 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Operating System :: Kali Linux'
],
keywords='pentesting security wireless eap 802.1X radius',
url='https://github.com/NickSanzotta/WiFiSuite',
author='Nick Sanzotta',
license='MIT',
packages=find_packages(include=[
"wifisuite", "wifisuite.*", "wifisuite.wifisuite.*"
]),
install_requires=[
'wpa_supplicant',
'psutil',
'netifaces'
],
# entry_points = {
# 'console_scripts': ['wifisuite=wifisuite.wifisuite:main'],
# },
include_package_data=True,
zip_safe=False)