-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
41 lines (34 loc) · 909 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
#!/usr/bin/env python
from setuptools import setup
import os
__doc__ = """
WiFi tools that could possibly work on a nice day, if you are lucky.
"""
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
install_requires = ['setuptools']
try:
import argparse
except:
install_requires.append('argparse')
version = '0.1.0'
setup(
name='wifi',
version=version,
author='Rocky Meza, Gavin Wahl',
author_email='rockymeza@gmail.com',
description=__doc__,
long_description=read('README.rst'),
packages=['wifi'],
scripts=['bin/wifi'],
test_suite='tests',
platforms="Debian",
license='BSD',
install_requires=install_requires,
classifiers=[
"License :: OSI Approved :: BSD License",
"Topic :: System :: Networking",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
],
)