forked from crewAIInc/crewAI-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 810 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
38
[project]
name = "crewai-tools"
version = "0.14.0"
description = "Set of tools for the crewAI framework"
authors = [
{ name = "João Moura", email = "[email protected]" },
]
requires-python = ">=3.10,<=3.13"
dependencies = [
"pydantic>=2.6.1",
"pytest>=8.0.0",
"lancedb>=0.5.4",
"openai>=1.12.0",
"chromadb>=0.4.22",
"pyright>=1.1.350",
"pytube>=15.0.0",
"requests>=2.31.0",
"beautifulsoup4>=4.12.3",
"selenium>=4.18.1",
"docx2txt>=0.8",
"docker>=7.1.0",
"embedchain>=0.1.114",
]
readme = "README.md"
[project.urls]
Homepage = "https://crewai.com"
Repository = "https://github.com/crewAIInc/crewAI-tools"
Documentation = "https://docs.crewai.com"
[project.scripts]
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"