-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (56 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
60 lines (56 loc) · 1.87 KB
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
[project]
name = "celery-batches"
license = "BSD-3-Clause"
version = "0.11"
description = "Experimental task class that buffers messages and processes them as a list."
readme = "README.rst"
requires-python = ">=3.9"
dependencies = [
"celery>=5.0,<5.7",
]
authors = [
{name = "Patrick Cloke", email = "clokep@patrick.cloke.us" },
]
keywords = ["task", "job", "queue", "distributed", "messaging", "actor", "celery"]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: System :: Distributed Computing",
"Topic :: Software Development :: Object Brokering",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
]
[project.urls]
Documentation = "https://celery-batches.readthedocs.io"
Changelog = "https://github.com/clokep/celery-batches/blob/main/CHANGELOG.rst"
Repository = "https://github.com/clokep/celery-batches"
Funding = "https://github.com/sponsors/clokep"
Issues = "https://github.com/clokep/celery-batches/issues"
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["celery_batches"]
[tool.mypy]
warn_unused_configs = true
strict = false
warn_return_any = true
follow_imports = "normal"
show_error_codes = true
disallow_untyped_defs = true
ignore_missing_imports = true
warn_unreachable = true
no_implicit_optional = true
files = [
"celery_batches",
"t",
]