Metadata-Version: 2.0
Name: Gooey
Version: 0.8.3
Summary: Turn (almost) any command line program into a full GUI application with one line
Home-page: http://pypi.python.org/pypi/Gooey/
Author: Chris Kiehl
Author-email: audionautic@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Desktop Environment
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Widget Sets
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7

<h1>Gooey (Beta)</h1>

<h3>Turn (almost) any Python Console Program into a GUI application with one line</h3>

<p align="center">
    <img src="https://raw.githubusercontent.com/chriskiehl/Gooey/master/resources/primary.png"/>
</p>


<h2>Quick Start</h2>

<p>Gooey is attached to your code via a simple decorator on your `main` method.</p>

<pre>
    from gooey import Gooey

    @Gooey      <--- all it takes! :)
    def main():
      # rest of code

</pre>

With the decorator attached, run your program and the GUI will now appear!

<b>Note: PyPi's formatting is ancient, so checkout the full documentation, instructions, and source on <a href="https://github.com/chriskiehl/Gooey">github!</a></b>

<br /><br /><br /><br />

