-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
71 lines (63 loc) · 1.91 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 = "amplifier-core"
version = "1.1.0"
description = "Rust kernel with Python bindings for the Amplifier modular AI agent framework"
license = "MIT"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Microsoft MADE:Explorations Team" },
]
keywords = ["ai", "agent", "llm", "rust", "pyo3", "maturin"]
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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Rust",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"click>=8.3.1",
"pydantic>=2.0",
"pyyaml>=6.0.3",
"tomli>=2.0",
"typing-extensions>=4.0",
]
[project.scripts]
amplifier-core = "amplifier_core.cli:main"
[project.entry-points."pytest11"]
amplifier_module = "amplifier_core.pytest_plugin"
[project.urls]
Homepage = "https://github.com/microsoft/amplifier-core"
Documentation = "https://github.com/microsoft/amplifier-core/tree/main/docs"
Repository = "https://github.com/microsoft/amplifier-core"
Issues = "https://github.com/microsoft/amplifier-core/issues"
[build-system]
requires = ["maturin>=1.9"]
build-backend = "maturin"
[tool.maturin]
python-source = "python"
module-name = "amplifier_core._engine"
bindings = "pyo3"
manifest-path = "bindings/python/Cargo.toml"
include = [
{ path = "LICENSE", format = "sdist" },
{ path = "README.md", format = "sdist" },
]
[tool.uv]
package = true
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-asyncio>=1.3.0",
"maturin>=1.9",
]
[tool.pytest.ini_options]
testpaths = ["tests", "bindings/python/tests"]
addopts = "--import-mode=importlib"
asyncio_mode = "strict"