-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
42 lines (27 loc) · 943 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import mirage
setup(
name='mirage',
version=mirage.__version__,
packages=find_packages(),
author="Romain Cayre",
author_email="rcayre@laas.fr",
description="Mirage is an offensive framework dedicated to the security analysis of wireless communication protocols",
install_requires=["keyboard","terminaltables","pyusb","pyserial","pycryptodomex","psutil","scapy","matplotlib"],
include_package_data=True,
url='https://github.com/RCayre/mirage',
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Natural Language :: French",
"Operating System :: Linux",
"Programming Language :: Python :: 3.6",
"Topic :: Security",
],
entry_points = {
'console_scripts': [
'mirage = mirage.mirage:main',
],
},
)