From 17d1d67913a4a2bcbc263327b8a4f1796750ba5b Mon Sep 17 00:00:00 2001 From: chriskiehl Date: Sat, 3 Oct 2015 15:15:37 -0400 Subject: [PATCH] Converted html to ReST because PyPi is dumb --- setup.py | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) 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=''' -

Gooey (Beta)

-

Turn (almost) any Python Console Program into a GUI application with one line

+Gooey (Beta) +############ -

- -

+Turn (almost) any Python Console Program into a GUI application with one line +----------------------------------------------------------------------------- -

Quick Start

+.. image:: https://cloud.githubusercontent.com/assets/1408720/7904381/f54f97f6-07c5-11e5-9bcb-c3c102920769.png -

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! -



''' +Note: PyPi's formatting is ancient, so checkout the full documentation, instructions, and source on `Github `_''' )