forked from wso2/reference-implementations-afm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 701 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 701 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
[project]
name = "afm-cli"
version = "0.3.0"
description = "AFM CLI metapackage: installs afm-core and afm-langchain"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.11",
]
license = "Apache-2.0"
requires-python = ">=3.11"
urls = { Repository = "https://github.com/wso2/reference-implementations-afm" }
dependencies = [
"afm-core==0.2.0",
"afm-langchain>=0.2.0",
]
[project.scripts]
afm = "afm.cli:cli"
[build-system]
requires = ["uv_build>=0.9.28,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "afm_cli"
[tool.uv.sources]
afm-core = { workspace = true }
afm-langchain = { workspace = true }