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

  1. from distutils.core import setup
  2. with open('README.md') as readme:
  3. long_description = readme.read()
  4. setup(
  5. name='Gooey',
  6. version='0.1.0',
  7. author='Chris Kiehl',
  8. author_email='ckiehl@gmail.com',
  9. packages=[
  10. 'gooey',
  11. 'gooey.gui',
  12. 'gooey.images',
  13. 'gooey.languages',
  14. 'gooey.mockapplications',
  15. ],
  16. url='http://pypi.python.org/pypi/Gooey/',
  17. license='LICENSE.txt',
  18. description='Turn (almost) any command line program into a full GUI application with one line',
  19. long_description=long_description
  20. )