2022-12-08 04:06:41 +03:00
|
|
|
[metadata]
|
|
|
|
name = daphne
|
|
|
|
version = attr: daphne.__version__
|
|
|
|
url = https://github.com/django/daphne
|
|
|
|
author = Django Software Foundation
|
|
|
|
author_email = foundation@djangoproject.com
|
|
|
|
description = Django ASGI (HTTP/WebSocket) server
|
|
|
|
long_description = file: README.rst
|
|
|
|
long_description_content_type = text/x-rst
|
|
|
|
license = BSD
|
|
|
|
classifiers =
|
|
|
|
Development Status :: 4 - Beta
|
|
|
|
Environment :: Web Environment
|
|
|
|
Intended Audience :: Developers
|
|
|
|
License :: OSI Approved :: BSD License
|
|
|
|
Operating System :: OS Independent
|
|
|
|
Programming Language :: Python
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3.8
|
|
|
|
Programming Language :: Python :: 3.9
|
|
|
|
Programming Language :: Python :: 3.10
|
|
|
|
Programming Language :: Python :: 3.11
|
2023-11-26 18:12:23 +03:00
|
|
|
Programming Language :: Python :: 3.12
|
2022-12-08 04:06:41 +03:00
|
|
|
Topic :: Internet :: WWW/HTTP
|
|
|
|
|
|
|
|
[options]
|
|
|
|
package_dir =
|
2024-04-11 16:23:49 +03:00
|
|
|
daphne=daphne
|
2022-12-08 04:06:41 +03:00
|
|
|
twisted=daphne/twisted
|
|
|
|
include_package_data = True
|
|
|
|
install_requires =
|
|
|
|
asgiref>=3.5.2,<4
|
|
|
|
autobahn>=22.4.2
|
|
|
|
twisted[tls]>=22.4
|
2023-09-07 10:09:10 +03:00
|
|
|
python_requires = >=3.8
|
2022-12-08 04:06:41 +03:00
|
|
|
zip_safe = False
|
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
|
|
daphne = daphne.cli:CommandLineInterface.entrypoint
|
|
|
|
|
|
|
|
[options.extras_require]
|
|
|
|
tests =
|
|
|
|
django
|
|
|
|
hypothesis
|
|
|
|
pytest
|
|
|
|
pytest-asyncio
|
|
|
|
|
2017-11-29 05:00:15 +03:00
|
|
|
[flake8]
|
2017-11-29 10:47:11 +03:00
|
|
|
exclude = venv/*,tox/*,docs/*,testproject/*,js_client/*,.eggs/*
|
2024-02-06 11:04:10 +03:00
|
|
|
extend-ignore = E123, E128, E266, E402, W503, E731, W601, B036
|
2017-11-29 05:00:15 +03:00
|
|
|
max-line-length = 120
|
2020-10-20 17:44:54 +03:00
|
|
|
|
|
|
|
[isort]
|
|
|
|
profile = black
|
|
|
|
|
|
|
|
[tool:pytest]
|
|
|
|
testpaths = tests
|
2022-05-23 16:34:29 +03:00
|
|
|
asyncio_mode = strict
|