This repository has been archived by the owner on Sep 4, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
67 lines (61 loc) · 1.82 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "django-rq-scheduler"
packages = [
{ include = "scheduler" },
]
version = "2023.9.0"
description = "An async job scheduler for django using redis"
readme = "README.md"
keywords = ["redis", "django", "background-jobs", "job-queue", "task-queue", "redis-queue", "scheduled-jobs"]
authors = [
"Daniel Moran <[email protected]>",
]
maintainers = [
"Daniel Moran <[email protected]>",
]
license = "MIT"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Framework :: Django',
'Framework :: Django :: 4',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
'Framework :: Django :: 3',
'Framework :: Django :: 3.2',
]
homepage = "https://github.com/dsoftwareinc/django-redis-scheduler"
documentation = "https://django-rq-scheduler.readthedocs.io/en/latest/"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/dsoftwareinc/django-rq-scheduler/issues"
"Funding" = "https://github.com/sponsors/cunla"
[tool.poetry.dependencies]
python = "^3.9"
django = ">=3.2"
croniter = "^1.4"
click = "^8.1"
rq = "^1.15"
pyyaml = { version = "^6.0", optional = true }
[tool.poetry.dev-dependencies]
poetry = "^1.5"
coverage = "^7"
fakeredis = { version = "^2.15", extras = ['lua'] }
Flake8-pyproject = "^1.2"
[tool.poetry.extras]
yaml = ["pyyaml"]
[tool.flake8]
max-line-length = 119
exclude = [
'scheduler/migrations',
]