From a02927115f7c593c38fc17f973eb9c757bbe763d Mon Sep 17 00:00:00 2001 From: Sean Robinson Date: Mon, 19 May 2014 18:51:14 -0700 Subject: [PATCH] Add setup.py Other developers are not going to be able to do much without the base distutils file. Signed-off-by: Sean Robinson --- setup.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a4d8526 --- /dev/null +++ b/setup.py @@ -0,0 +1,29 @@ +#!/usr/bin/python + +from distutils.core import setup + +from test.testcommand import test + +setup( + name = "WiFi Radar", + version = 2.1, + author = "Sean Robinson", + author_email = "robinson@tuxfamily.org", + description = """ """, + url = "", + packages = ['wifiradar', 'test'], + provides = ['wifiradar'], + + platforms = "Linux", + license = "GPL", + keywords = "WiFi scanner", + download_url = "", + classifiers = [ + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + ], + cmdclass={'test': test}, +) + -- 2.11.4.GIT