-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (77 loc) · 2.15 KB
/
pyproject.toml
File metadata and controls
84 lines (77 loc) · 2.15 KB
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
[project]
authors = [
{name = "Serhii Shevchuk", email = "serhii.shevchuk.dev@gmail.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
dependencies = [
"multidict>=6.2.0"
]
description = "A framework-independent compression middleware for ASGI applications"
keywords = ["asgi", "compression", "middleware", "gzip", "brotli", "zstandard", "zstd"]
license = {text = "MIT"}
maintainers = [
{name = "Serhii Shevchuk", email = "serhii.shevchuk.dev@gmail.com"}
]
name = "asgi-compression"
readme = "README.md"
requires-python = ">=3.9"
version = "0.1.1"
[project.urls]
Documentation = "https://github.com/serozhenka/asgi-compression"
Issues = "https://github.com/serozhenka/asgi-compression/issues"
Source = "https://github.com/serozhenka/asgi-compression"
[project.optional-dependencies]
all = [
"brotli>=1.1.0",
"zstandard>=0.23.0"
]
br = [
"brotli>=1.1.0"
]
zstd = [
"zstandard>=0.23.0"
]
[dependency-groups]
dev = [
"brotli>=1.1.0",
"django>=4.2.20",
"django-eventstream>=4.5.1",
"httpx>=0.28.1",
"litestar>=2.15.1",
"pyright>=1.1.399",
"pytest>=8.3.5",
"pytest-asyncio>=0.25.3",
"ruff>=0.11.6",
"sse-starlette>=2.2.1",
"starlette>=0.46.1",
"typing-extensions>=4.12.2",
"zstandard>=0.23.0"
]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "session"
asyncio_mode = "auto"
[tool.ruff]
line-length = 80
[tool.ruff.lint.isort]
known-first-party = ["asgi-compression"]
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]