-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 773 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 773 Bytes
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
[project]
name = "catalyst"
version = "0.1.25"
description = "High-performance workflow engine for complex pipelines. Parallel DAG execution, <1s sorts, zero bloat."
authors = [
{ name = "shenald-dev", email = "bot@shenald.dev" }
]
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.110.0",
"uvicorn>=0.27.1",
"pydantic>=2.6.3"
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.2",
"pytest-asyncio>=0.23.5",
"pytest-cov>=4.1.0",
"mypy>=1.8.0",
"ruff>=0.3.0",
"httpx>=0.27.0"
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.mypy]
strict = true
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"