forked from FaradayRF/faradayio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (49 loc) · 1.46 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
from distutils.core import setup
setup(
name='faradayio',
packages=['faradayio'],
install_requires=[
'attrs==17.4.0',
'certifi==2018.1.18',
'chardet==3.0.4',
'coverage==4.5.1',
'coveralls==1.2.0',
'docopt==0.6.2',
'flake8==3.5.0',
'idna==2.6',
'mccabe==0.6.1',
'pluggy==0.6.0',
'py==1.5.2',
'pycodestyle==2.3.1',
'pyflakes==1.6.0',
'pyserial==3.4',
'pytest==3.4.1',
'pytest-cov==2.5.1',
'python-pytun==2.2.1',
'requests==2.18.4',
'scapy-python3==0.23',
'six==1.11.0',
'sliplib==0.3.0',
'sphinx-rtd-theme==0.2.4',
'timeout-decorator==0.4.0',
'urllib3==1.22',
],
version='0.0.4',
description='FaradayRF TUN/TAP adapter',
author='FaradayRF',
author_email='[email protected]',
url='https://github.com/FaradayRF/faradayio',
license='GPLv3',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Communications :: Ham Radio',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
],
)