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
497 B

  1. from distutils.core import setup
  2. setup(
  3. name='Gooey',
  4. version='0.1.0',
  5. author='Chris Kiehl',
  6. author_email='ckiehl@gmail.com',
  7. packages=[
  8. 'gooey',
  9. 'gooey.languages',
  10. 'gooey.app',
  11. 'gooey.app.dialogs',
  12. 'gooey.app.images',
  13. 'gooey.mockapplications',
  14. 'gooey.themes'],
  15. url='http://pypi.python.org/pypi/TowelStuff/',
  16. license='LICENSE.txt',
  17. description='Useful towel-related stuff.',
  18. long_description=open('README.txt').read()
  19. )