-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1.01 KB
/
pyproject.toml
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
[project]
name = "channels-valkey"
version = "0.2.0"
description = "Valkey-backed ASGI channel layer implementation"
readme = "README.rst"
requires-python = ">=3.9"
dependencies = [
"asgiref>=3.2.10",
"channels>=4.1.0",
"msgpack>=1.1.0",
"valkey>=6.0.0",
]
[project.urls]
Homepage = "https://github.com/amirreza8002/channels-valkey"
Source = "https://github.com/amirreza8002/channels-valkey"
Issues = "https://github.com/amirreza8002/channels-valkey/issues"
[project.optional-dependencies]
cryptography = [
"cryptography>=43.0.1",
]
[tool.uv]
dev-dependencies = [
"async-timeout>=4.0.3",
"black>=24.10.0",
"coverage>=7.6.2",
"pre-commit>=4.0.1",
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"ruff>=0.6.9",
"tox>=4.21.2",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "-p no:django"
testpaths = "tests"
asyncio_default_fixture_loop_scope = "session"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401", "F403"]
[tool.coverage.run]
parallel = true