diff --git a/setup.py b/setup.py index 79f6fe9..dcbd229 100644 --- a/setup.py +++ b/setup.py @@ -30,31 +30,32 @@ setup( 'Programming Language :: Python :: 2.7' ], long_description=''' -
- -
+Turn (almost) any Python Console Program into a GUI application with one line +----------------------------------------------------------------------------- -Gooey is attached to your code via a simple decorator on your `main` method.
-- from gooey import Gooey +Quick Start +----------- - @Gooey <--- all it takes! :) - def main(): +Gooey is attached to your code via a simple decorator on your `main` method. + +.. code-block:: + + from gooey import Gooey + @Gooey <--- all it takes! :) + def main(): # rest of code --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! +With the decorator attached, run your program and the GUI will now appear! -