-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (41 loc) · 1.16 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
47
48
49
50
[tool.poetry]
name = "django-cache-mock"
version = "0.0.0"
description = ""
authors = ["Iuri de Silvio <[email protected]>"]
readme = "README.md"
packages = [{include = "django_cache_mock"}]
[tool.poetry.dependencies]
python = "^3.8"
django = "^3 || ^4"
mockcache3 = { version = "*", optional = true }
fakeredis = { version = "*", optional = true }
redislite = { version = "*", optional = true }
django-redis = { version = "*", optional = true }
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-black = "*"
pytest-cov = "*"
pytest-ruff = "*"
[tool.poetry.extras]
mockcache = ["mockcache3"]
fakeredis = ["fakeredis"]
redislite = ["redislite"]
django-redis = ["django-redis"]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.coverage.run]
branch = true
[tool.coverage.report]
precision = 2
skip_covered = true
show_missing = true
[tool.ruff]
line-length = 88
select = ["F", "E", "W", "I001"]
[tool.pytest.ini_options]
addopts = "--cov --black --ruff"
filterwarnings = ["ignore::DeprecationWarning", "ignore::pytest.PytestWarning"]
[tool.poetry-dynamic-versioning]
enable = true