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.

18 lines
521 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.gui',
  10. 'gooey.images',
  11. 'gooey.languages',
  12. 'gooey.mockapplications',
  13. ],
  14. url='http://pypi.python.org/pypi/TowelStuff/',
  15. license='LICENSE.txt',
  16. description='Turn (almost) any command line program into a full GUI application with one line',
  17. long_description=open('README.md').read()
  18. )