1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
[metadata]
name = asgiref
version = attr: asgiref.__version__
url = https://github.com/django/asgiref/
author = Django Software Foundation
author_email = foundation@djangoproject.com
description = ASGI specs, helper code, and adapters
long_description = file: README.rst
license = BSD-3-Clause
classifiers =
Development Status :: 5 - Production/Stable
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 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Internet :: WWW/HTTP
project_urls =
Documentation = https://asgi.readthedocs.io/
Further Documentation = https://docs.djangoproject.com/en/stable/topics/async/#async-adapter-functions
Changelog = https://github.com/django/asgiref/blob/master/CHANGELOG.txt
[options]
python_requires = >=3.9
packages = find:
include_package_data = true
install_requires =
typing_extensions>=4; python_version < "3.11"
zip_safe = false
[options.extras_require]
tests =
pytest
pytest-asyncio
mypy>=1.14.0
[tool:pytest]
testpaths = tests
asyncio_mode = strict
asyncio_default_fixture_loop_scope=function
[flake8]
exclude = venv/*,tox/*,specs/*
ignore = E123,E128,E266,E402,W503,E731,W601,E203
max-line-length = 119
[isort]
profile = black
multi_line_output = 3
[mypy]
warn_unused_ignores = True
strict = True
[mypy-asgiref.current_thread_executor]
disallow_untyped_defs = False
check_untyped_defs = False
[mypy-asgiref.local]
disallow_untyped_defs = False
check_untyped_defs = False
[mypy-asgiref.sync]
disallow_untyped_defs = False
check_untyped_defs = False
[mypy-asgiref.compatibility]
disallow_untyped_defs = False
check_untyped_defs = False
[mypy-asgiref.wsgi]
disallow_untyped_defs = False
check_untyped_defs = False
[mypy-asgiref.testing]
disallow_untyped_defs = False
check_untyped_defs = False
[mypy-asgiref.server]
disallow_untyped_defs = False
check_untyped_defs = False
[mypy-test_server]
disallow_untyped_defs = False
check_untyped_defs = False
[mypy-test_wsgi]
disallow_untyped_defs = False
check_untyped_defs = False
[mypy-test_testing]
disallow_untyped_defs = False
check_untyped_defs = False
[mypy-test_sync_contextvars]
disallow_untyped_defs = False
check_untyped_defs = False
[mypy-test_sync]
disallow_untyped_defs = False
check_untyped_defs = False
[mypy-test_local]
disallow_untyped_defs = False
check_untyped_defs = False
[mypy-test_compatibility]
disallow_untyped_defs = False
check_untyped_defs = False
|