forked from joshvillbrandt/wireless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 877 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
#!/usr/bin/env python
from setuptools import setup
# auto-convert README.md
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (ImportError, OSError):
# we'll just use the poorly formatted Markdown file instead
long_description = open('README.md').read()
setup(
name='wireless',
version='0.3.3',
description='A dead simple, cross-platform Python library to connect to ' +
'wireless networks.',
long_description=long_description,
url='https://github.com/joshvillbrandt/wireless',
author='Josh Villbrandt',
author_email='[email protected]',
license=open('LICENSE').read(),
packages=['wireless'],
setup_requires=[
'tox',
'nose',
'flake8',
'packaging'
],
install_requires=[
],
scripts=[],
test_suite='tests',
zip_safe=False
)