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.

31 lines
968 B

  1. """Script for setuptools."""
  2. from setuptools import setup, find_packages
  3. with open('README.md') as readme:
  4. long_description = readme.read()
  5. version = __import__('gooey').__version__
  6. setup(
  7. name='Gooey',
  8. version=version,
  9. url='http://pypi.python.org/pypi/Gooey/',
  10. author='Chris Kiehl',
  11. author_email='audionautic@gmail.com',
  12. description=('Turn (almost) any command line program into a full GUI '
  13. 'application with one line'),
  14. license='MIT',
  15. packages=find_packages(),
  16. include_package_data=True,
  17. dependency_links = ["http://www.wxpython.org/download.php"],
  18. classifiers = [
  19. 'Development Status :: 4 - Beta',
  20. 'Intended Audience :: Developers',
  21. 'Topic :: Software Development :: Build Tools :: GUI :: CLI',
  22. 'Programming Language :: Python :: 2.6',
  23. 'Programming Language :: Python :: 2.7'
  24. ],
  25. long_description=long_description
  26. )