forked from BrainBlend-AI/atomic-agents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (33 loc) · 953 Bytes
/
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", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "atomic_agents"
version = "0.1.46"
description = "A versatile framework designed to facilitate the creation and management of intelligent agents."
authors = [
{ name = "Kenny Vaneetvelde", email = "[email protected]" }
]
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"beautifulsoup4==4.12.3",
"google_api_python_client==2.114.0",
"instructor==1.3.4",
"markdownify==0.12.1",
"openai==1.35.12",
"pydantic==2.8.2",
"PyPDF2==3.0.1",
"Requests==2.32.3",
"rich==13.7.1",
"sympy==1.12",
"youtube_transcript_api==0.6.2"
]
[project.urls]
homepage = "https://github.com/KennyVaneetvelde/atomic_agents"
repository = "https://github.com/KennyVaneetvelde/atomic_agents"
[tool.setuptools.packages.find]
where = ["."]
include = ["atomic_agents"]
[tool.black]
line-length = 127