forked from yoyowallet/django-idempotency-key
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (33 loc) · 835 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
[tool.poetry]
name = "django-idempotency-key"
version = "1.2.0"
description = "Django middleware for idempotency key support in view and viewset functions."
authors = ["YoyoDevs <[email protected]>"]
license = "MIT"
packages = [
{include = "idempotency_key"}
]
[tool.poetry.dependencies]
python = ">=3.7,<4"
Django = ">=2.2"
djangorestframework = ">=3.8"
[tool.poetry.dev-dependencies]
"bump2version" = "^1.0.1"
"flake8" = "^4.0.1"
black = "^22.3.0"
codecov = "^2.1.12"
django-debug-toolbar = "^3.2.4"
django-redis = "^5.2.0"
djangorestframework = "^3.13.1"
pre-commit = "^2.18.1"
pytest = "^7.1.1"
pytest-cov = "^3.0.0"
pytest-django = "^4.5.2"
pytest-mock = "^3.7.0"
redis = "^4.2.2"
tox = "^3.24.5"
twine = "^4.0.0"
xenon = "^0.9.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"