chore: consolidate monorepo dependencies and configuration

- Consolidate dev dependencies to root using PEP 735 dependency groups
- Remove duplicate dependencies between packages
- Remove unused dependencies (pillow, cairosvg, bandit)
- Clean up tool configurations and build targets
This commit is contained in:
Greyson Lalonde
2025-09-12 22:33:59 -04:00
parent a7bb489e9f
commit 41d9ee6d15
5 changed files with 13 additions and 198 deletions

View File

@@ -9,18 +9,12 @@ authors = [
requires-python = ">=3.10,<3.14"
dependencies = [
"crewai-core",
"pydantic>=2.6.1",
"lancedb>=0.5.4",
"openai>=1.12.0",
"chromadb==0.5.23",
"pyright>=1.1.350",
"pytube>=15.0.0",
"requests>=2.31.0",
"docker>=7.1.0",
"click>=8.1.8",
"tiktoken>=0.8.0",
"stagehand>=0.4.1",
"portalocker==2.7.0",
]
[project.urls]
@@ -29,8 +23,6 @@ Repository = "https://github.com/crewAIInc/crewAI-tools"
Documentation = "https://docs.crewai.com"
[project.scripts]
[project.optional-dependencies]
embedchain = [
"embedchain>=0.1.114",
@@ -146,11 +138,6 @@ contextual = [
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.uv]
dev-dependencies = [
"pytest>=8.3.4",
]
[tool.hatch.version]
path = "src/crewai_tools/__init__.py"
@@ -162,10 +149,3 @@ build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/crewai_tools"]
[dependency-groups]
dev = [
"pytest-asyncio>=0.25.2",
"pytest>=8.0.0",
"pytest-recording>=0.13.3",
]