This repository has been archived by the owner on Dec 16, 2022. It is now read-only.
forked from Koed00/django-q
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
92 lines (77 loc) · 2.59 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[tool.poetry]
name = "django-q"
version = "1.3.9"
description = "A multiprocessing distributed task queue for Django"
authors = ["Ilan Steemers <[email protected]>"]
maintainers = ["Ilan Steemers <[email protected]>"]
license = "MIT"
readme = 'README.rst'
repository = "https://github.com/koed00/django-q"
homepage = "https://django-q.readthedocs.org"
documentation = "https://django-q.readthedocs.org"
keywords = ["django", "distributed", "multiprocessing", "queue", "scheduler"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Distributed Computing',
'Topic :: Software Development :: Libraries :: Python Modules',
]
include = ['CHANGELOG.md']
[tool.poetry.plugins] # Optional super table
[tool.poetry.plugins."djangoq.errorreporters"]
"rollbar" = "django_q_rollbar:Rollbar"
"sentry" = "django_q_sentry:Sentry"
[tool.poetry.dependencies]
python = ">=3.8, <4"
django = ">=3.2"
blessed = ">=1.17"
arrow = ">=1.1"
django-picklefield = ">=3.0"
hiredis = {version = ">=1.0", optional = true}
redis = {version = ">=3.5", optional = true}
psutil = {version = ">=5.7", optional = true}
django-redis = {version = ">=4.12", optional = true}
iron-mq = {version = ">=0.9", optional = true}
boto3 = {version = ">=1.14", optional = true}
pymongo = {version = ">=3.10", optional = true}
croniter = {version = ">=1.0", optional = true}
django-q-rollbar = {version = "^0.1", optional = true}
django-q-sentry = {version = "^0.1", optional = true}
setproctitle = {version = "^1.3", optional = true}
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-django = "*"
pytest-xdist = "*"
pytest-sugar = "*"
Sphinx = "*"
pytest-cov = "*"
black = "*"
isort = "*"
pyupgrade = "*"
[tool.poetry.extras]
testing = ["django-redis", "croniter", "hiredis", "psutil", "iron-mq", "boto3", "pymongo", "setproctitle"]
rollbar = ["django-q-rollbar"]
sentry = ["django-q-sentry"]
redis = ["redis", "hiredis"]
disque = ["redis", "hiredis"]
iron-mq = ["iron-mq"]
mongo = ["pymongo"]
sqs = ["boto3"]
cron = ["croniter"]
[tool.isort]
profile = "black"
multi_line_output = 3
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"