forked from salesforce/django-request-queue-timeout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 761 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 761 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "django-request-queue-timeout"
version = "1.0.3"
description = "Django middleware class to quickly dispatch any requests that wait too long in a queue before being processed"
license = {file = "LICENSE.txt"}
readme = "README.md"
dependencies = [
"django >=4.2, <6"
]
keywords = [
"django",
"queue",
"timeout"
]
[project.optional-dependencies]
dev = [
"bandit>=1.7.4",
"coverage[toml]==6.3.2",
"freezegun>=1.2.0",
"ipython~=7.15.0",
"ruff~=0.1.2",
]
[tool.setuptools]
packages = ["rqto"]
[tool.ruff]
extend-exclude = [".heroku"]
extend-select = ["C901"]
[tool.coverage.report]
fail_under = 90
exclude_lines = ["raise NotImplementedError"]