forked from microsoft/amplifier
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (67 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
71 lines (67 loc) · 1.41 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
[project]
name = "workspace"
version = "0.1.0"
description = "Workspace project"
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.12.15",
"anthropic>=0.69.0",
"beautifulsoup4>=4.14.2",
"claude-code-sdk>=0.0.20",
"click>=8.2.1",
"httpx>=0.28.1",
"langchain>=0.2.1",
"langchain-openai>=0.3.28",
"markdownify>=1.2.0",
"mcp>=1.0.0",
"networkx>=3.5",
"openai>=1.108.1",
"pydantic>=2.11.7",
"pydantic-ai>=1.0.10",
"pydantic-settings>=2.10.1",
"pydot>=4.0.1",
"python-dotenv>=1.1.1",
"pyvis>=0.3.2",
"pyyaml>=6.0.2",
"rapidfuzz>=3.13.0",
"requests>=2.32.4",
"tiktoken>=0.11.0",
"tqdm>=4.67.1",
"yt-dlp>=2025.9.26",
]
[tool.uv.workspace]
# Add all projects in the workspace
members = []
[tool.uv.sources]
# Example: my-project = { workspace = true }
[dependency-groups]
dev = [
"build>=1.2.2.post1",
"debugpy>=1.8.14",
"pyright>=1.1.407",
"pytest>=8.3.5",
"pytest-asyncio>=0.23.0",
"pytest-cov>=6.1.1",
"pytest-mock>=3.14.0",
"ruff>=0.11.10",
"twine>=6.1.0",
]
[tool.pyright]
venvPath = "."
venv = ".venv"
exclude = [
"**/__pycache__",
"**/.venv/**",
"**/node_modules/**",
".git/**",
".ruff_cache/**",
".pytest_cache/**",
"*.egg-info",
"build/**",
"dist/**",
".data/**",
"ai_working/**",
]
typeCheckingMode = "basic"
reportMissingImports = false
pythonVersion = "3.11"