-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (87 loc) · 2.16 KB
/
Copy pathpyproject.toml
File metadata and controls
96 lines (87 loc) · 2.16 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
[project]
name = "taskowl"
version = "0.1.0"
description = "Modern Celery task monitoring with MCP integration"
readme = "README.md"
requires-python = ">=3.14"
license = "MIT"
authors = [{ name = "Kalvad", email = "contact@kalvad.com" }]
keywords = ["celery", "monitoring", "mcp", "tasks", "rabbitmq"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Framework :: FastAPI",
"Environment :: Console",
"Topic :: System :: Monitoring",
]
dependencies = [
"fastapi==0.141.1",
"uvicorn==0.52.4",
"sqlalchemy==2.0.52",
"asyncpg==0.31.0",
"alembic==1.20.0",
"celery==5.6.3",
"mcp==2.2.0",
"pydantic==2.13.5",
"pydantic-settings==2.15.0",
"redis==8.1.0",
"prometheus-client==0.26.0",
"httpx==0.28.1",
]
[project.urls]
Homepage = "https://github.com/KalvadTech/taskowl"
Repository = "https://github.com/KalvadTech/taskowl"
Documentation = "https://github.com/KalvadTech/taskowl"
[dependency-groups]
dev = [
"pytest==9.1.1",
"pytest-asyncio==1.4.0",
"ruff==0.16.7",
"ty==0.0.80",
"aiosqlite==0.22.1",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.7",
]
[project.scripts]
taskowl = "taskowl.main:main"
taskowl-consume = "taskowl.consumer.cli:main"
taskowl-mcp = "taskowl.mcp.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/taskowl"]
[tool.ruff]
target-version = "py314"
line-length = 100
exclude = [
"*.md",
"docs/",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
]
ignore = [
"B008", # Allow Depends() in function defaults (FastAPI pattern)
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
pythonpath = ["src"]