-
Notifications
You must be signed in to change notification settings - Fork 279
/
Copy pathpyproject.toml
80 lines (73 loc) · 1.51 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "crewai-tools"
version = "0.32.1"
description = "Set of tools for the crewAI framework"
readme = "README.md"
authors = [
{ name = "João Moura", email = "[email protected]" },
]
requires-python = ">=3.10,<=3.13"
dependencies = [
"pydantic>=2.6.1",
"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.95.0",
"scrapegraph-py>=1.8.0",
"serpapi>=0.1.5",
"weaviate-client>=4.9.6",
"linkup-sdk>=0.2.1",
"spider-client>=0.1.25",
"patronus>=0.0.16",
"snowflake>=1.0.2"
]
[project.urls]
Homepage = "https://crewai.com"
Repository = "https://github.com/crewAIInc/crewAI-tools"
Documentation = "https://docs.crewai.com"
[project.scripts]
[project.optional-dependencies]
scrapfly-sdk = [
"scrapfly-sdk>=0.8.19",
]
sqlalchemy = [
"sqlalchemy>=2.0.35",
]
multion = [
"multion>=1.1.0",
]
firecrawl-py = [
"firecrawl-py>=1.8.0",
]
composio-core = [
"composio-core>=0.6.11.post1",
]
browserbase = [
"browserbase>=1.0.5",
]
hyperbrowser = [
"hyperbrowser>=0.18.0",
]
snowflake = [
"cryptography>=43.0.3",
"snowflake-connector-python>=3.12.4",
"snowflake-sqlalchemy>=1.7.3",
]
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest-asyncio>=0.25.2",
"pytest>=8.0.0",
]