forked from flashnuke/wifi-deauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 966 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
from setuptools import setup, find_packages
setup(
name='wifi_deauth',
version='1.21',
description='WiFi deauthentication tool built with Python using the Scapy library',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Flashnuke',
author_email='[email protected]',
url='https://github.com/flashnuke/wifi-deauth',
packages=find_packages(),
install_requires=[
'scapy>=2.4.3'
],
classifiers=[
'Programming Language :: Python :: 3',
'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'
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'wifi-deauth=wifi_deauth.wifi_deauth:main',
],
},
)