-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
102 lines (95 loc) · 2.29 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
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "django-tasks-scheduler"
packages = [
{ include = "scheduler" },
]
version = "2.1.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.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 = "6.0.1"
[tool.poetry.dev-dependencies]
poetry = "^1.8.3"
black = "^24.4.2"
coverage = "^7.6"
fakeredis = { version = "^2.21.5", extras = ['lua'] }
Flake8-pyproject = "^1.2"
pyyaml = "^6"
freezegun = "^1.5"
[tool.poetry.extras]
yaml = ["pyyaml"]
[tool.flake8]
max-line-length = 120
exclude = [
'scheduler/migrations',
'testproject',
'.venv',
'.github',
'__pycache',
]
include = [
'scheduler',
]
[tool.black]
color = true
line-length = 120
target-version = ['py310']
include = [
"scheduler",
"testproject",
]
exclude = '''
(
/(
| \.git # root of the project
| \.github
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| scheduler/migrations
| scheduler/templates
)/
| .*/__pycache__/.*
)
'''