-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (33 loc) · 971 Bytes
/
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
[project]
dependencies = [
"uhashring >= 2.3, < 3",
"marisa-trie >= 1.2.1, < 1.3",
"zstandard >= 0.23.0, < 0.24",
"meta-memcache-socket >= 0.1.3, < 0.2",
]
authors = [{ name = "Guillermo Perez", email = "[email protected]" }]
license = { text = "MIT License" }
name = "meta-memcache"
version = "2.0.1"
description = "Modern, pure python, memcache client with support for new meta commands."
readme = "README.md"
requires-python = ">=3.10"
[project.optional-dependencies]
metrics = ["prometheus-client >= 0.17.1"]
[project.urls]
homepage = "https://github.com/RevenueCat/meta-memcache-py"
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["meta_memcache"]
[tool.coverage.report]
show_missing = true
[tool.ruff]
line-length = 88
[tool.ruff.lint.per-file-ignores]
"tests/*.py" = ["E731"]
"src/meta_memcache/__init__.py" = ["F401"]