-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
124 lines (109 loc) · 2.77 KB
/
pyproject.toml
File metadata and controls
124 lines (109 loc) · 2.77 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
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
117
118
119
120
121
122
123
124
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "django-valkey"
version = "0.4.0"
description = "a valkey backend for django"
readme = "README.rst"
requires-python = ">=3.10"
license = "BSD-3-Clause"
maintainers = [
{name = "amirreza",email = "amir.rsf1380@gmail.com"},
]
classifiers = [
"Programming Language :: Python",
"Environment :: Web Environment",
"Development Status :: 4 - Beta" ,
"Topic :: Utilities",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0"
]
dependencies = [
"django>=4.2,!=5.0.*,!=5.1.*",
"valkey>=6.0.2",
"typing-extensions>=4.15; python_version < '3.13'",
]
[project.optional-dependencies]
libvalkey = [
"libvalkey>=4.0.1",
]
lz4 = [
"lz4>=4.3.3",
]
pyzstd = [
"backports.zstd>=1.0.0",
]
zstd = [
"backports.zstd>=1.0.0",
]
msgpack = [
"msgpack>=1.1.0",
]
brotli = [
"brotli>=1.1.0",
]
msgspec = [
"msgspec>=0.19.0",
]
[dependency-groups]
dev = [
"anyio>=4.9.0",
"coverage>=7.8.0",
"django-cmd>=2.6",
"django-coverage-plugin>=3.1.0",
"django-stubs>=5.1.3",
"invoke>=2.2.0",
"mypy>=1.15.0",
"pre-commit>=4.2.0",
"pytest>=8.3.5",
"pytest-django>=4.11.1",
"pytest-mock>=3.14.0",
"pytest-subtests>=0.14.1",
"ruff>=0.12.5",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-awesome-nav>=3.1.1",
"mkdocs-material>=9.6.12",
]
ipython = [
"ipython>=8.35.0",
]
[project.urls]
Homepage = "https://github.com/django-commons/django-valkey"
Source = "https://github.com/django-commons/django-valkey"
Issues = "https://github.com/django-commons/django-valkey/issues"
Documentation = "https://django-valkey.readthedocs.io/en/latest/"
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
pretty = true
show_error_codes = true
show_error_context = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unreachable = true
[tool.django-stubs]
django_settings_module = "tests.settings.sqlite"
ignore_missing_settings = true
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings.sqlite"
[tool.coverage.run]
plugins = ["django_coverage_plugin"]
parallel = true
[tool.codespell]
ignore-words-list = "aadd,asend,smove"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401", "F403"]