-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.42 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
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "django-lightweight-queue"
version = "4.11.0"
description = "Lightweight & modular queue and cron system for Django"
authors = ["Thread Engineering <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/thread/django-lightweight-queue/"
include = ["django_lightweight_queue/py.typed"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
]
[tool.poetry.dependencies]
python = ">=3.8,<4"
django = ">=3.2"
daemonize = "~=2.5.0"
prometheus-client = "~=0.7"
typing-extensions = "^4"
redis = {version = ">=3.0,<5", optional = true}
tqdm = {version = "^4.54.1", optional = true}
setproctitle = {version = "^1.0", optional = true}
[tool.poetry.extras]
redis = ["redis"]
progress = ["tqdm"]
setproctitle = ["setproctitle"]
[tool.poetry.dev-dependencies]
# Testing tools
fakeredis = "^1.1.0"
freezegun = "^1.1.0"
# Linting tools
flake8 = "^4.0.0"
isort = "^5.10"
mypy = "^0.940"
# Flake 8 plugins
flake8-bugbear = "^21.11.29"
flake8-builtins = "^1.5.3"
flake8-coding = "^1.3.2"
flake8-commas = "^2.1.0"
flake8-comprehensions = "^3.7.0"
flake8-debugger = "^4.0.0"
flake8-github-actions = "^0.1.0"
flake8-isort = "^4.1.1"
flake8-mutable = "^1.2.0"
flake8-pep3101 = "^1.3.0"
flake8-tidy-imports = "^4.5.0"
# Type stubs
types-freezegun = "^1.1.3"
types-redis = "^4.0.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"