-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (74 loc) · 2.04 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pydocket"
dynamic = ["version"]
description = "A distributed background task system for Python functions"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.12"
license = { file = "LICENSE" }
authors = [{ name = "Chris Guidry", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed",
]
dependencies = [
"cloudpickle>=3.1.1",
"opentelemetry-api>=1.30.0",
"opentelemetry-exporter-prometheus>=0.51b0",
"prometheus-client>=0.21.1",
"python-json-logger>=3.2.1",
"redis>=4.6",
"rich>=13.9.4",
"typer>=0.15.1",
]
[dependency-groups]
dev = [
"codespell>=2.4.1",
"docker>=7.1.0",
"ipython>=9.0.1",
"mypy>=1.14.1",
"opentelemetry-distro>=0.51b0",
"opentelemetry-exporter-otlp>=1.30.0",
"opentelemetry-instrumentation>=0.51b0",
"opentelemetry-instrumentation-logging>=0.51b0",
"opentelemetry-instrumentation-redis>=0.51b0",
"opentelemetry-sdk>=1.30.0",
"pre-commit>=4.1.0",
"pyright>=1.1.396",
"pytest>=8.3.4",
"pytest-aio>=1.9.0",
"pytest-cov>=6.0.0",
"pytest-xdist>=3.6.1",
"ruff>=0.9.7",
]
[project.scripts]
docket = "docket.__main__:app"
[project.urls]
"Homepage" = "https://github.com/chrisguidry/docket"
"Bug Tracker" = "https://github.com/chrisguidry/docket/issues"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["src/docket"]
[tool.pytest.ini_options]
addopts = [
"--numprocesses=logical",
"--maxprocesses=4",
"--cov=src/docket",
"--cov=tests",
"--cov-report=term-missing",
"--cov-branch",
]
filterwarnings = ["error"]
[tool.pyright]
include = ["src", "tests"]
typeCheckingMode = "strict"
venvPath = "."
venv = ".venv"