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.

20 lines
497 B

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()
)