-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (37 loc) · 850 Bytes
/
pyproject.toml
File metadata and controls
46 lines (37 loc) · 850 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
43
44
45
[project]
name = "amplifier-module-loop-streaming"
version = "1.0.0"
description = "Streaming orchestrator module for Amplifier"
license = "MIT"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Microsoft MADE:Explorations Team" },
]
dependencies = [
]
[project.entry-points."amplifier.modules"]
loop-streaming = "amplifier_module_loop_streaming:mount"
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.hatch.build.targets.wheel]
packages = [
"amplifier_module_loop_streaming",
]
[tool.hatch.metadata]
allow-direct-references = true
[dependency-groups]
dev = [
"amplifier-core>=1.0.10",
"pytest>=8.0.0",
"pytest-asyncio>=1.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--import-mode=importlib"
asyncio_mode = "strict"