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.

42 lines
1.3 KiB

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. dependency_links = [
  23. "http://www.wxpython.org/download.php"
  24. ],
  25. license='LICENSE.txt',
  26. classifiers = [
  27. 'Development Status :: 4 - Beta',
  28. 'Intended Audience :: Developers',
  29. 'Topic :: Software Development :: Build Tools :: GUI :: CLI',
  30. 'Programming Language :: Python :: 2.6',
  31. 'Programming Language :: Python :: 2.7'
  32. ],
  33. description='Turn (almost) any command line program into a full GUI application with one line',
  34. long_description=long_description
  35. )