-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
78 lines (71 loc) · 2.05 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "django-tasks-scheduler"
packages = [
{ include = "scheduler" },
]
version = "3.0.1"
description = "An async job scheduler for django using redis/valkey brokers"
readme = "README.md"
keywords = ["redis", "valkey", "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.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Framework :: Django',
'Framework :: Django :: 5.0',
'Framework :: Django :: 5.1',
]
homepage = "https://github.com/django-commons/django-tasks-scheduler"
documentation = "https://django-tasks-scheduler.readthedocs.io/en/latest/"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/django-commons/django-tasks-scheduler/issues"
"Funding" = "https://github.com/sponsors/cunla"
[tool.poetry.dependencies]
python = "^3.10"
django = ">=5"
croniter = ">=2.0"
click = "^8.1"
rq = "^1.16"
pyyaml = { version = "^6.0", optional = true }
valkey = { version = "^6.0.2", optional = true }
[tool.poetry.group.dev.dependencies]
poetry = "^2.0.1"
ruff = "^0.11"
coverage = "^7.6"
fakeredis = { version = "^2.21.5", extras = ['lua'] }
pyyaml = "^6"
freezegun = "^1.5"
[tool.poetry.extras]
yaml = ["pyyaml"]
valkey = ["valkey"]
[tool.ruff]
line-length = 120
exclude = [
'scheduler/migrations',
'testproject',
'.venv',
'.github',
'__pycache',
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"