-
Notifications
You must be signed in to change notification settings - Fork 259
/
pyproject.toml
46 lines (41 loc) · 968 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
39
40
41
42
43
44
45
46
[project]
name = "crewai-tools"
version = "0.17.0"
description = "Set of tools for the crewAI framework"
authors = [
{ name = "João Moura", email = "joaomdmoura@mgail.com" },
]
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",
"crewai>=0.86.0",
"scrapegraph-py>=1.8.0",
"serpapi>=0.1.5",
]
readme = "README.md"
[project.urls]
Homepage = "https://crewai.com"
Repository = "https://github.com/crewAIInc/crewAI-tools"
Documentation = "https://docs.crewai.com"
[project.scripts]
[project.optional-dependencies]
weaviate-client = [
"weaviate-client>=4.9.6",
]
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"