-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (32 loc) · 1.15 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "toolagent"
description = "A Highly-Modularized Tool Learning Framework for LLM Based Agent"
dynamic = ["version", "dependencies"]
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Mengsong Wu", email = "radi.cat@qq.com" },
{ name = "Xiang Zhang", email = "1805565641@qq.com" },
{ name = "Han Han", email = "1411839206@qq.com" },
{ name = "Tong Zhu", email = "tzhu1997@outlook.com" },
]
maintainers = [
{ name = "Mengsong Wu", email = "radi.cat@qq.com" },
{ name = "Xiang Zhang", email = "1805565641@qq.com" },
{ name = "Han Han", email = "1411839206@qq.com" },
{ name = "Tong Zhu", email = "tzhu1997@outlook.com" },
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["src"]
include = ["toolagent"]
[tool.setuptools_scm]
[project.urls]
"Homepage" = "https://github.com/NoobNLP/ToolAgent"
"Bug Tracker" = "https://github.com/NoobNLP/ToolAgent/issues"
"Source" = "https://github.com/NoobNLP/ToolAgent/"