-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (91 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
101 lines (91 loc) · 2.21 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
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
[project]
name = "tasktronaut"
version = "0.3.0"
description = "A simple task orchestration library for running complex processes or workflows in Python."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Chris Stefano", email = "virtualstaticvoid@gmail.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"pydantic>=2.12.4",
]
[dependency-groups]
dev = [
{ include-group = "build" },
{ include-group = "dagster" },
{ include-group = "django-rq" },
{ include-group = "rq" },
{ include-group = "test" },
{ include-group = "docs" },
"ruff>=0.14.4",
"pylint>=4.0.2",
"mypy>=1.18.2",
]
rq = [
"redis>=7.0.1",
"rq>=2.6.0",
]
django-rq = [
"django-rq>=3.1",
]
dagster = [
"dagster>=1.12.0",
]
test = [
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
]
build = [
"setuptools>=80.9.0",
"wheel>=0.45.1",
]
docs = [
"sphinx>=5.0",
"sphinx-autodoc-typehints>=3.0.1",
"sphinx-rtd-theme>=1.0",
]
[project.urls]
homepage = "https://github.com/virtualstaticvoid/tasktronaut"
documentation = "https://www.virtualstaticvoid.com/tasktronaut/"
repository = "https://github.com/virtualstaticvoid/tasktronaut.git"
changelog = "https://github.com/virtualstaticvoid/tasktronaut/blob/main/CHANGELOG.md"
[tool.ruff.format]
quote-style = "double"
[tool.ruff.lint.pydocstyle]
convention = "pep257"
[tool.pylint]
disable = [
# for now, disable docstring checks
"C0114", # missing-module-docstring
"C0115", # missing-class-docstring
"C0116", # missing-function-docstring
]
[tool.mypy]
check_untyped_defs = true
show_column_numbers = true
strict_optional = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_ignores = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test*.py"
addopts = "--cov=tasktronaut --cov-report=term --cov-report html"
[tool.coverage.run]
branch = true
parallel = true
source = ["tasktronaut"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["setuptools>=80.9.0", "wheel>=0.45.1"]
build-backend = "setuptools.build_meta"