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.

60 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. <h1>Gooey (Beta)</h1>
  29. <h3>Turn (almost) any Python Console Program into a GUI application with one line</h3>
  30. <p align="center">
  31. <img src="https://raw.githubusercontent.com/chriskiehl/Gooey/master/resources/primary.png"/>
  32. </p>
  33. <h2>Quick Start</h2>
  34. <p>Gooey is attached to your code via a simple decorator on your `main` method.</p>
  35. <pre>
  36. from gooey import Gooey
  37. @Gooey <--- all it takes! :)
  38. def main():
  39. # rest of code
  40. </pre>
  41. With the decorator attached, run your program and the GUI will now appear!
  42. <b>Note: PyPi's formatting is ancient, so checkout the full documentation, instructions, and source on <a href="https://github.com/chriskiehl/Gooey">github!</a></b>
  43. <br /><br /><br /><br />'''
  44. )