-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
56 lines (48 loc) · 1.62 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools >= 62.6, < 64.0"]
build-backend = "setuptools.build_meta"
[project]
name = "agentlego"
authors = [
{name = "AgentLego Contributors"}
]
maintainers = [
{name = "mzr1996", email = "[email protected]"}
]
description = "AgentLego is a versatile tool library for enhancing LLM-based agents."
requires-python = ">=3.8"
keywords = ["LLM", "Multi-Modality", "AI Agent"]
license = {text = "Apache License 2.0"}
classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
]
dynamic = ["version", "readme", "dependencies", "optional-dependencies"]
[project.urls]
Documentation = "https://agentlego.readthedocs.io"
Repository = "https://github.com/InternLM/agentlego"
[project.scripts]
agentlego-server = "agentlego.server.server:cli"
[tool.setuptools.packages.find]
where = ["."]
include = ["agentlego*"]
[tool.setuptools.dynamic]
version = {attr = "agentlego.version.__version__"}
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = {file = "requirements/runtime.txt"}
[tool.setuptools.dynamic.optional-dependencies]
all = {file = "requirements/optional.txt"}
server = {file = "requirements/server.txt"}
[tool.yapf]
based_on_style = "pep8"
blank_line_before_nested_class_or_def = true
split_before_expression_after_opening_paren = true
split_penalty_import_names = 0
split_penalty_after_opening_bracket = 800
column_limit = 89
[tool.isort]
line_length = 89
multi_line_output = 0
known_first_party = "agentlego"
no_lines_before = ["STDLIB", "LOCALFOLDER"]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]