-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (47 loc) · 2.26 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
# -*- coding: utf-8 -*-
from distutils.core import setup
from ez_setup import use_setuptools
use_setuptools()
setup(
name = "python-wifi",
version = "0.5.0",
author = "Róman Joost",
author_email = "[email protected]",
maintainer = "Sean Robinson",
maintainer_email = "[email protected]",
description = """Python WiFi is a Python module that provides read and write access to a
wireless network card's capabilities using the Linux Wireless Extensions.""",
url = "http://pythonwifi.wikispot.org/",
packages = ['pythonwifi'],
data_files=[('', ['README', 'INSTALL']),
('examples', ['examples/iwlist.py', 'examples/iwconfig.py']),
('docs', ['docs/AUTHORS', 'docs/BUGS', 'docs/LICENSE.GPL',
'docs/LICENSE.LGPL', 'docs/NEWS', 'docs/ROADMAP',
'docs/TODO', 'docs/VERSION', 'docs/ChangeLog',
'docs/DEVEL.txt',
'docs/feature_matrix_iwconfig.py.txt',
'docs/feature_matrix_iwlist.py.txt',
'docs/feature_matrix_wireless_extensions.txt']),
('docs/logos', ['docs/logos/pythonwifi-logo.svg',
'docs/logos/pythonwifi-logo-16x16.png',
'docs/logos/pythonwifi-logo-64x64.png',
'docs/logos/pythonwifi-logo-text.png',
'docs/logos/pythonwifi-logo.karbon']),
('man/man8', ['docs/iwconfig.py.8', 'docs/iwlist.py.8']),
],
platforms = "Linux",
license = "LGPL for module; GPL for example apps",
keywords = "wifi wireless wlan iwconfig iwlist iwtools",
download_url = "https://developer.berlios.de/project/filelist.php?group_id=7134",
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'License :: OSI Approved :: Lesser General Public License (LGPL)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: System :: Networking',
],
)