-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (62 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
66 lines (62 loc) · 1.87 KB
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
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "contextagent"
version = "0.1.1"
description = "A Context-Central Multi-Agent System Platform"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Zhimeng Guo", email = "gzjz07@outlook.com"}
]
keywords = ["agent", "multi-agent", "ai", "llm", "research", "machine-learning", "autonomous-agents"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"aiohttp>=3.9.0",
"beautifulsoup4>=4.12.0",
"build>=1.3.0",
"flask>=3.1.2",
"google-generativeai>=0.8.5",
"ipdb>=0.13.13",
"litellm==1.76",
"loguru>=0.7.3",
"lxml>=6.0.2",
"markdown>=3.5.0",
"matplotlib>=3.10.6",
"numpy>=2.3.3",
"openai-agents>=0.3.2",
"pandas>=2.3.3",
"pygments>=2.17.0",
"requests>=2.32.5",
"rich>=14.1.0",
"scikit-learn>=1.7.2",
"seaborn>=0.13.2",
"twine>=6.2.0",
"weave>=0.52.8",
]
[project.urls]
Homepage = "https://github.com/TimeLovercc/contextagent"
Repository = "https://github.com/TimeLovercc/contextagent"
Documentation = "https://github.com/TimeLovercc/contextagent#readme"
"Bug Tracker" = "https://github.com/TimeLovercc/contextagent/issues"
[project.optional-dependencies]
docs = [
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.0",
"mkdocstrings[python]>=0.25.0",
"mkdocs-material-extensions>=1.3.1",
"pymdown-extensions>=10.8.0",
]
[tool.setuptools.packages.find]
include = ["contextagent*", "pipelines*"]
exclude = ["examples*", "data*", "outputs*", "experience*"]