METADATA 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. Metadata-Version: 2.1
  2. Name: gunicorn
  3. Version: 20.1.0
  4. Summary: WSGI HTTP Server for UNIX
  5. Home-page: https://gunicorn.org
  6. Author: Benoit Chesneau
  7. Author-email: benoitc@e-engura.com
  8. License: MIT
  9. Project-URL: Documentation, https://docs.gunicorn.org
  10. Project-URL: Homepage, https://gunicorn.org
  11. Project-URL: Issue tracker, https://github.com/benoitc/gunicorn/issues
  12. Project-URL: Source code, https://github.com/benoitc/gunicorn
  13. Platform: UNKNOWN
  14. Classifier: Development Status :: 5 - Production/Stable
  15. Classifier: Environment :: Other Environment
  16. Classifier: Intended Audience :: Developers
  17. Classifier: License :: OSI Approved :: MIT License
  18. Classifier: Operating System :: MacOS :: MacOS X
  19. Classifier: Operating System :: POSIX
  20. Classifier: Programming Language :: Python
  21. Classifier: Programming Language :: Python :: 3
  22. Classifier: Programming Language :: Python :: 3.5
  23. Classifier: Programming Language :: Python :: 3.6
  24. Classifier: Programming Language :: Python :: 3.7
  25. Classifier: Programming Language :: Python :: 3.8
  26. Classifier: Programming Language :: Python :: 3.9
  27. Classifier: Programming Language :: Python :: 3 :: Only
  28. Classifier: Programming Language :: Python :: Implementation :: CPython
  29. Classifier: Programming Language :: Python :: Implementation :: PyPy
  30. Classifier: Topic :: Internet
  31. Classifier: Topic :: Utilities
  32. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  33. Classifier: Topic :: Internet :: WWW/HTTP
  34. Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
  35. Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Server
  36. Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
  37. Requires-Python: >=3.5
  38. Requires-Dist: setuptools (>=3.0)
  39. Provides-Extra: eventlet
  40. Requires-Dist: eventlet (>=0.24.1) ; extra == 'eventlet'
  41. Provides-Extra: gevent
  42. Requires-Dist: gevent (>=1.4.0) ; extra == 'gevent'
  43. Provides-Extra: gthread
  44. Provides-Extra: setproctitle
  45. Requires-Dist: setproctitle ; extra == 'setproctitle'
  46. Provides-Extra: tornado
  47. Requires-Dist: tornado (>=0.2) ; extra == 'tornado'
  48. Gunicorn
  49. --------
  50. .. image:: https://img.shields.io/pypi/v/gunicorn.svg?style=flat
  51. :alt: PyPI version
  52. :target: https://pypi.python.org/pypi/gunicorn
  53. .. image:: https://img.shields.io/pypi/pyversions/gunicorn.svg
  54. :alt: Supported Python versions
  55. :target: https://pypi.python.org/pypi/gunicorn
  56. .. image:: https://travis-ci.org/benoitc/gunicorn.svg?branch=master
  57. :alt: Build Status
  58. :target: https://travis-ci.org/benoitc/gunicorn
  59. Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX. It's a pre-fork
  60. worker model ported from Ruby's Unicorn_ project. The Gunicorn server is broadly
  61. compatible with various web frameworks, simply implemented, light on server
  62. resource usage, and fairly speedy.
  63. Feel free to join us in `#gunicorn`_ on Freenode_.
  64. Documentation
  65. -------------
  66. The documentation is hosted at https://docs.gunicorn.org.
  67. Installation
  68. ------------
  69. Gunicorn requires **Python 3.x >= 3.5**.
  70. Install from PyPI::
  71. $ pip install gunicorn
  72. Usage
  73. -----
  74. Basic usage::
  75. $ gunicorn [OPTIONS] APP_MODULE
  76. Where ``APP_MODULE`` is of the pattern ``$(MODULE_NAME):$(VARIABLE_NAME)``. The
  77. module name can be a full dotted path. The variable name refers to a WSGI
  78. callable that should be found in the specified module.
  79. Example with test app::
  80. $ cd examples
  81. $ gunicorn --workers=2 test:app
  82. Contributing
  83. ------------
  84. See `our complete contributor's guide <CONTRIBUTING.md>`_ for more details.
  85. License
  86. -------
  87. Gunicorn is released under the MIT License. See the LICENSE_ file for more
  88. details.
  89. .. _Unicorn: https://bogomips.org/unicorn/
  90. .. _`#gunicorn`: https://webchat.freenode.net/?channels=gunicorn
  91. .. _Freenode: https://freenode.net/
  92. .. _LICENSE: https://github.com/benoitc/gunicorn/blob/master/LICENSE