-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.56 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
61
62
[project]
name = "offwork"
version = "0.2.2"
description = "Distributed Python task execution via automatic function serialization"
readme = "README.md"
authors = [
{name = "Rémi Héneault", email = "remi@heneault.fr"}
]
license = {text = "AGPL-3.0-only"}
requires-python = ">=3.11,<4.0"
dependencies = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Distributed Computing",
"Typing :: Typed",
]
keywords = ["distributed", "remote-execution", "serialization", "task-queue"]
[project.urls]
Repository = "https://github.com/codeSamuraii/offwork"
[project.scripts]
offwork = "offwork.__main__:main"
[project.optional-dependencies]
redis = ["redis>=5.0"]
rabbitmq = ["aio-pika>=9.0"]
ws = ["websockets>=15.0"]
[dependency-groups]
dev = [
"pytest (>=9.0.2,<10.0.0)",
"pytest-asyncio (>=1.0.0)",
"mypy (>=1.19.1,<2.0.0)",
"ipython (>=9.11.0,<10.0.0)",
"isort (>=8.0.1,<9.0.0)",
"twine (>=6.2.0,<7.0.0)",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.mypy]
strict = true
files = ["offwork"]
[tool.isort]
profile = "black"
length_sort = true
order_by_type = true
line_length = 180
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"