forked from camel-ai/camel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.28 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name="camel"
version="0.0.1"
authors=[
{name="CAMEL TEAM", email="[email protected]"},
]
description="Communicative Agents for AI Society Study"
readme="README.md"
requires-python=">=3.7"
keywords=[
"communicative-ai",
"ai-societies",
"artificial-intelligence",
"deep-learning",
"multi-agent-systems",
"cooperative-ai",
"natural-language-processing",
"large-language-models",
]
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Apache License 2.0",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dynamic=["dependencies", "optional-dependencies"]
[project.urls]
homepage="https://www.camel-ai.org/"
repository="https://github.com/lightaime/camel"
changelog="https://github.com/lightaime/camel/blob/master/CHANGELOG.md"
[tool.yapf]
based_on_style = "pep8"
split_before_named_assigns = false
[tool.isort]
multi_line_output = 3
include_trailing_comma = true