-
Notifications
You must be signed in to change notification settings - Fork 250
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 815 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
[project]
name = "amplifier"
version = "0.1.0"
description = "Amplifier AI development platform - modular AI assistant with flexible module sourcing"
license = "MIT"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Microsoft MADE:Explorations Team" },
]
dependencies = [
"amplifier-core>=1.0.10",
"amplifier-app-cli @ git+https://github.com/microsoft/amplifier-app-cli@main",
]
[project.scripts]
amplifier = "amplifier_app_cli.main:main"
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.uv.sources]
amplifier-app-cli = { git = "https://github.com/microsoft/amplifier-app-cli", branch = "main" }
[tool.hatch.build.targets.wheel]
packages = [
"amplifier",
]
[tool.hatch.metadata]
allow-direct-references = true