-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (88 loc) · 2.69 KB
/
pyproject.toml
File metadata and controls
97 lines (88 loc) · 2.69 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
97
[build-system]
requires = ["uv_build>=0.9.10,<0.11.0"]
build-backend = "uv_build"
[project]
name = "typeagent"
version = "0.4.0.dev"
description = "Incremental message indexing and querying pipelines using Structured RAG"
readme = { file = "README.md", content-type = "text/markdown" }
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Guido van Rossum", email = "gvanrossum@microsoft.com" },
{ name = "Steven Lucco" },
{ name = "Umesh Madan" },
{ name = "Guido van Rossum" },
]
requires-python = ">=3.12"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Typing :: Typed",
]
dependencies = [
"azure-identity>=1.22.0",
"colorama>=0.4.6",
"mcp[cli]>=1.12.1",
"numpy>=2.2.6",
"openai>=1.81.0",
"pydantic>=2.11.4",
"pydantic-ai-slim[openai]>=1.39.0",
"pyreadline3>=3.5.4 ; sys_platform == 'win32'",
"python-dotenv>=1.1.0",
"tiktoken>=0.12.0",
"typechat>=0.0.4",
"webvtt-py>=0.5.1",
]
[project.optional-dependencies]
# Needed to enable --logfire flag to tools/query.py
logfire = [
"logfire>=4.1.0",
"opentelemetry-instrumentation-httpx>=0.57b0",
]
[project.urls]
GitHub = "https://github.com/microsoft/typeagent-py"
Documentation = "https://github.com/microsoft/typeagent-py/tree/main/docs/README.md"
[tool.uv.build-backend]
module-root = "src"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
[tool.pyright]
reportUnusedVariable = true
reportUnusedImport = true
reportDuplicateImport = true
[tool.isort]
profile = "black"
order_by_type = false
force_sort_within_sections = true
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "AI", "FIRSTPARTY", "LOCALFOLDER"]
known_ai = ["mcp", "openai", "pydantic", "pydantic_ai", "tiktoken", "typechat"]
known_first_party = ["typeagent", "tests", "tools", "gmail", "demo"]
known_local_folder = ["conftest"]
[dependency-groups]
dev = [
"azure-mgmt-authorization>=4.0.0",
"azure-mgmt-keyvault>=12.1.1",
"black>=25.12.0",
"coverage[toml]>=7.9.1",
"google-api-python-client>=2.184.0",
"google-auth-httplib2>=0.2.0",
"google-auth-oauthlib>=1.2.2",
"isort>=7.0.0",
"logfire>=4.1.0", # So 'make check' passes
"msgraph-sdk>=1.54.0",
"opentelemetry-instrumentation-httpx>=0.57b0",
"pyright>=1.1.408", # 407 has a regression
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"pytest-benchmark>=5.1.0",
"pytest-mock>=3.14.0",
]