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.

32 lines
970 B

10 years ago
  1. import os
  2. from setuptools import setup, find_packages
  3. with open('README.md') as readme:
  4. long_description = readme.read()
  5. local_path = os.path.join(os.path.dirname(__file__), 'gooey')
  6. imagepath = os.path.join(local_path, 'images')
  7. langpath = os.path.join(local_path, 'languages')
  8. images = [os.path.join(imagepath, image) for image in os.listdir(imagepath)]
  9. languages = [os.path.join(langpath, lang)
  10. for lang in os.listdir(langpath)
  11. if '.py' not in lang]
  12. setup(
  13. name='Gooey',
  14. version='0.1.0',
  15. author='Chris Kiehl',
  16. author_email='audionautic@gmail.com',
  17. package_data={
  18. '': ['*.txt', '*.png', '*.jpg', '*.json', '*.ico', '*.gif']
  19. },
  20. packages=find_packages(),
  21. url='http://pypi.python.org/pypi/Gooey/',
  22. license='LICENSE.txt',
  23. description='Turn (almost) any command line program into a full GUI application with one line',
  24. long_description=long_description
  25. )