From 71f628f41afebaf2d5618a113483011ae6adae30 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 29 Jan 2019 19:50:08 -0800 Subject: [PATCH] closes #359 - setup.py out of date --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 816ade5..54f2bd6 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ deps = [ ] if sys.version[0] == '3': - deps.append('wxpython>=4.0.0b1') + deps.append('wxpython>=4.0.2') setup( @@ -36,8 +36,9 @@ setup( 'Topic :: Desktop Environment', 'Topic :: Software Development :: Build Tools', 'Topic :: Software Development :: Widget Sets', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7' + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'License :: OSI Approved :: MIT License' ], long_description=''' @@ -67,5 +68,5 @@ Gooey is attached to your code via a simple decorator on your `main` method. With the decorator attached, run your program and the GUI will now appear! -Note: PyPi's formatting is ancient, so checkout the full documentation, instructions, and source on `Github `_''' +Checkout the full documentation, instructions, and source on `Github `_''' )