mirror of https://github.com/chriskiehl/Gooey.git
chriskiehl
10 years ago
3 changed files with 44 additions and 53 deletions
Split View
Diff Options
@ -1,20 +1,19 @@ |
|||
from distutils.core import setup |
|||
|
|||
setup( |
|||
name='Gooey', |
|||
version='0.1.0', |
|||
author='Chris Kiehl', |
|||
author_email='ckiehl@gmail.com', |
|||
packages=[ |
|||
'gooey', |
|||
'gooey.languages', |
|||
'gooey.app', |
|||
'gooey.app.dialogs', |
|||
'gooey.app.images', |
|||
'gooey.mockapplications', |
|||
'gooey.themes'], |
|||
url='http://pypi.python.org/pypi/TowelStuff/', |
|||
license='LICENSE.txt', |
|||
description='Useful towel-related stuff.', |
|||
long_description=open('README.txt').read() |
|||
name='Gooey', |
|||
version='0.1.0', |
|||
author='Chris Kiehl', |
|||
author_email='ckiehl@gmail.com', |
|||
packages=[ |
|||
'gooey', |
|||
'gooey.gui', |
|||
'gooey.images', |
|||
'gooey.languages', |
|||
'gooey.mockapplications', |
|||
], |
|||
url='http://pypi.python.org/pypi/TowelStuff/', |
|||
license='LICENSE.txt', |
|||
description='Turn (almost) any command line program into a full GUI application with one line', |
|||
long_description=open('README.md').read() |
|||
) |
Write
Preview
Loading…
Cancel
Save