METADATA 4.3 KB

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