-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (34 loc) · 955 Bytes
/
pyproject.toml
File metadata and controls
43 lines (34 loc) · 955 Bytes
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
[project]
name = "amplifier-module-context-simple"
version = "1.0.0"
description = "Reference context module - simple context manager for Amplifier"
license = "MIT"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Microsoft MADE:Explorations Team" },
]
dependencies = []
[project.entry-points."amplifier.modules"]
context-simple = "amplifier_module_context_simple:mount"
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.hatch.build.targets.wheel]
packages = [
"amplifier_module_context_simple",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.uv.sources]
amplifier-core = { git = "https://github.com/microsoft/amplifier-core", branch = "main" }
[dependency-groups]
dev = ["amplifier-core", "pytest>=8.0.0", "pytest-asyncio>=0.23.0"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--import-mode=importlib"
asyncio_mode = "strict"