-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
62 lines (53 loc) · 1.24 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "edgeagent"
version = "0.1.0"
description = "LangChain MCP Scheduling Middleware for Edge-Cloud Continuum"
readme = "README.md"
requires-python = ">=3.13.9"
license = "Apache-2.0"
dependencies = [
"langchain>=0.3.0",
"langchain-core>=0.3.0",
"langchain-openai>=0.2.0",
"langchain-mcp-adapters>=0.1.0",
"langgraph>=0.2.0",
"mcp>=1.0.0",
"fastmcp>=2.0.0",
"pyyaml>=6.0",
"pydantic>=2.0.0",
"httpx>=0.27.0",
"openai>=1.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=4.0.0",
"ruff>=0.4.0",
"mypy>=1.0.0",
]
scenarios = [
"pillow>=10.0.0", # Scenario 4: Image processing
"imagehash>=4.3.0", # Scenario 4: Perceptual Hash
]
all = [
"edgeagent[dev,scenarios]",
]
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_ignores = true
disallow_untyped_defs = true
[tool.setuptools.packages.find]
include = ["edgeagent*"]
exclude = ["tests*", "data*", "config*"]