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.

22 lines
580 B

from distutils.core import setup
with open('README.md') as readme:
long_description = readme.read()
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/Gooey/',
license='LICENSE.txt',
description='Turn (almost) any command line program into a full GUI application with one line',
long_description=long_description
)