-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
72 lines (64 loc) · 1.74 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
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project]
name = "omni-task-agent"
version = "0.1.0"
description = "A powerful multi-model task management system that can connect to various task management systems and help users choose and use the task management solution that best suits their needs"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "ACNet-AI", email = "agencollabnet@gmail.com"}
]
dependencies = [
# LangGraph core dependencies
"langgraph>=0.3.0,<0.4.0",
"langchain-core>=0.2.38",
# LLM providers
"langchain-openai>=0.3.0",
"langchain-anthropic>=0.1.1",
# MCP related
"langchain-mcp-adapters>=0.0.9",
"naptha-automcp==0.1.1",
# Other tools
"pydantic>=2.0.0",
"fastapi>=0.100.0",
"python-dotenv>=1.0.0",
"tenacity>=8.0.0",
]
[project.scripts]
ota = "omni_task_agent.cli:main"
serve_stdio = "run_mcp:serve_stdio"
serve_sse = "run_mcp:serve_sse"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"isort>=5.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["omni_task_agent"]
[tool.setuptools]
packages = ["omni_task_agent"]
[tool.black]
line-length = 88
target-version = ["py39", "py310"]
[tool.isort]
profile = "black"
line_length = 88
[tool.pytest]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
markers = [
"asyncio: marks tests as asyncio",
"integration: marks tests that require integration (slower)",
"unit: marks unit tests (faster)"
]
addopts = "--cov=omni_task_agent --cov-report=html --cov-report=term-missing -v"