-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
67 lines (59 loc) · 2.81 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python
""" setup.py: install PyRIC v 0.1.6.4
Copyright (C) 2016 Dale V. Patterson (wraith.wireless@yandex.com)
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
Redistribution and use in source and binary forms, with or without modifications,
are permitted provided that the following conditions are met:
o Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
o Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
o Neither the name of the orginal author Dale V. Patterson nor the names of any
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
sudo pip install PyRIC
"""
#__name__ = 'setup'
__license__ = 'GPLv3'
__version__ = '0.0.3'
__date__ = 'January 2017'
__author__ = 'Dale Patterson'
__maintainer__ = 'Dale Patterson'
__email__ = 'wraith.wireless@yandex.com'
__status__ = 'Production'
from setuptools import setup, find_packages
import pyric
setup(name='PyRIC',
version=pyric.version,
description="Python Wireless Library",
long_description=pyric.long_desc,
url='http://wraith-wireless.github.io/PyRIC/',
download_url="https://github.com/wraith-wireless/pyric/archive/"+pyric.version+".tar.gz",
author=pyric.__author__,
author_email=pyric.__email__,
maintainer=pyric.__maintainer__,
maintainer_email=pyric.__email__,
license=pyric.__license__,
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Security',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Security',
'Topic :: System :: Networking',
'Topic :: Utilities',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.5'],
keywords='Linux Python nl80211 iw iwconfig ifconfig wireless WLAN WiFi pentest',
packages=find_packages(),
package_data={'pyric':['nlhelp/*.help','utils/data/*.txt']}
)