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.

61 lines
1.8 KiB

  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 :: Desktop Environment',
  22. 'Topic :: Software Development :: Build Tools',
  23. 'Topic :: Software Development :: Widget Sets',
  24. 'Programming Language :: Python :: 2.6',
  25. 'Programming Language :: Python :: 2.7'
  26. ],
  27. long_description='''
  28. Gooey (Beta)
  29. ############
  30. Turn (almost) any Python Console Program into a GUI application with one line
  31. -----------------------------------------------------------------------------
  32. .. image:: https://cloud.githubusercontent.com/assets/1408720/7904381/f54f97f6-07c5-11e5-9bcb-c3c102920769.png
  33. Quick Start
  34. -----------
  35. Gooey is attached to your code via a simple decorator on your `main` method.
  36. .. code-block::
  37. from gooey import Gooey
  38. @Gooey <--- all it takes! :)
  39. def main():
  40. # rest of code
  41. With the decorator attached, run your program and the GUI will now appear!
  42. Note: PyPi's formatting is ancient, so checkout the full documentation, instructions, and source on `Github <https://github.com/chriskiehl/Gooey>`_'''
  43. )