Allow ConfigFileManager callers to ask for a return type
[wifi-radar.git] / setup.py
bloba4d852601a9abce267fc501fb1947be50137fb50
1 #!/usr/bin/python
3 from distutils.core import setup
5 from test.testcommand import test
7 setup(
8 name = "WiFi Radar",
9 version = 2.1,
10 author = "Sean Robinson",
11 author_email = "robinson@tuxfamily.org",
12 description = """ """,
13 url = "",
14 packages = ['wifiradar', 'test'],
15 provides = ['wifiradar'],
17 platforms = "Linux",
18 license = "GPL",
19 keywords = "WiFi scanner",
20 download_url = "",
21 classifiers = [
22 'License :: OSI Approved :: GNU General Public License (GPL)',
23 'Programming Language :: Python',
24 'Programming Language :: Python :: 2',
25 'Programming Language :: Python :: 2.7',
27 cmdclass={'test': test},