mirror of https://github.com/chriskiehl/Gooey.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
521 B
19 lines
521 B
from distutils.core import setup
|
|
|
|
setup(
|
|
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()
|
|
)
|