-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (55 loc) · 1.61 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 = "celery-signal-receivers"
version = "0.2.1"
description = "Extension for the Django signal receivers to process them asynchronously as the Celery tasks."
authors = ["Janusz Kamieński <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ivellios/celery-signal-receivers"
repository = "https://github.com/ivellios/celery-signal-receivers"
keywords = ["django", "signals", "celery"]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Celery",
]
packages = [
{ include = "celery_signals", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.9"
Django = ">=4.0,<6"
celery = "^5.3"
setuptools = "^75.1.0"
django-unified-signals = "^0.2.1"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
ipython = "^8.18.1"
ipdb = "^0.13.13"
liccheck = "^0.9.1"
pytest-django = "^4.5.2"
pytest-watch = "^4.2.0"
safety = "^3.2.8"
checkov = "^3.2.257"
jinja2 = "^3.1.4"
django-stubs = ">=4.2.4,<6"
pytest-cov = "^4.1.0"
mypy = "^1.11.2"
[tool.mypy]
plugins = [
"mypy_django_plugin.main"
]
[tool.django-stubs]
django_settings_module = "tests.testapp.settings"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"