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.

66 lines
1.9 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. with open('version.txt', 'r') as f:
  6. version = f.read()
  7. setup(
  8. name='Gooey',
  9. version=version,
  10. url='http://pypi.python.org/pypi/Gooey/',
  11. author='Chris Kiehl',
  12. author_email='audionautic@gmail.com',
  13. description=('Turn (almost) any command line program into a full GUI '
  14. 'application with one line'),
  15. license='MIT',
  16. packages=find_packages(),
  17. install_requires=[
  18. 'wxpython==4.0.0b1',
  19. 'Rx==1.5.9'
  20. ],
  21. include_package_data=True,
  22. dependency_links = ["http://www.wxpython.org/download.php"],
  23. classifiers = [
  24. 'Development Status :: 4 - Beta',
  25. 'Intended Audience :: Developers',
  26. 'Topic :: Desktop Environment',
  27. 'Topic :: Software Development :: Build Tools',
  28. 'Topic :: Software Development :: Widget Sets',
  29. 'Programming Language :: Python :: 2.6',
  30. 'Programming Language :: Python :: 2.7'
  31. ],
  32. long_description='''
  33. Gooey (Beta)
  34. ############
  35. Turn (almost) any Python Console Program into a GUI application with one line
  36. -----------------------------------------------------------------------------
  37. .. image:: https://cloud.githubusercontent.com/assets/1408720/7904381/f54f97f6-07c5-11e5-9bcb-c3c102920769.png
  38. Quick Start
  39. -----------
  40. Gooey is attached to your code via a simple decorator on your `main` method.
  41. .. code-block::
  42. from gooey import Gooey
  43. @Gooey <--- all it takes! :)
  44. def main():
  45. # rest of code
  46. With the decorator attached, run your program and the GUI will now appear!
  47. Note: PyPi's formatting is ancient, so checkout the full documentation, instructions, and source on `Github <https://github.com/chriskiehl/Gooey>`_'''
  48. )