-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 1.82 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
[project]
name = "amplifier-foundation"
version = "1.0.0"
description = "Ultra-thin mechanism layer for bundle composition in Amplifier"
license = "MIT"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Microsoft MADE:Explorations Team" },
]
keywords = ["ai", "agents", "llm", "modular", "bundles", "composition"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"pyyaml>=6.0.3",
"amplifier-core>=1.0.10",
]
[project.optional-dependencies]
grpc-adapter = [
"grpcio>=1.78.0",
"protobuf>=4.0.0",
]
[project.urls]
Homepage = "https://github.com/microsoft/amplifier-foundation"
Documentation = "https://github.com/microsoft/amplifier-foundation/tree/main/docs"
Repository = "https://github.com/microsoft/amplifier-foundation"
Issues = "https://github.com/microsoft/amplifier-foundation/issues"
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.hatch.build.targets.wheel]
packages = [
"amplifier_foundation",
]
[tool.hatch.metadata]
allow-direct-references = true
[dependency-groups]
dev = [
"grpcio>=1.78.0",
"notebook>=7.5.0",
"protobuf>=4.0.0",
"pytest>=8.4.2",
"pytest-asyncio>=1.3.0",
"pytest-timeout>=2.3.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--import-mode=importlib"
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"
[tool.pyright]
include = ["amplifier_foundation", "tests"]
extraPaths = ["."]