From 5cd02693efff9e3b2bc6bd2afc61c7250a10a539 Mon Sep 17 00:00:00 2001 From: chriskiehl Date: Sun, 31 Aug 2014 02:02:07 -0400 Subject: [PATCH] Updated setup.py with dependency info --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/setup.py b/setup.py index 49f1564..cbdf9a4 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,17 @@ setup( }, packages=find_packages(), url='http://pypi.python.org/pypi/Gooey/', + dependency_links = [ + "http://www.wxpython.org/download.php" + ], license='LICENSE.txt', + classifiers = [ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'Topic :: Software Development :: Build Tools :: GUI :: CLI', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + ] description='Turn (almost) any command line program into a full GUI application with one line', long_description=long_description )