mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-04-10 21:12:37 +00:00
Some checks failed
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Build uv cache / build-cache (3.10) (push) Has been cancelled
Build uv cache / build-cache (3.11) (push) Has been cancelled
Build uv cache / build-cache (3.12) (push) Has been cancelled
Build uv cache / build-cache (3.13) (push) Has been cancelled
- pypdf ~6.7.4 → ~6.7.5 (CVE: inefficient ASCIIHexDecode stream decoding) - Add urllib3>=2.6.3 override (CVE: decompression-bomb bypass on redirects) - ruff 0.14.7 → 0.15.1, mypy 1.19.0 → 1.19.1, pre-commit 4.5.0 → 4.5.1 - types-regex 2024.11.6 → 2026.1.15, boto3-stubs 1.40.54 → 1.42.40 - Auto-fixed 13 lint issues from new ruff rules Co-authored-by: Greyson LaLonde <greyson.r.lalonde@gmail.com>
26 lines
568 B
TOML
26 lines
568 B
TOML
[project]
|
|
name = "crewai-files"
|
|
dynamic = ["version"]
|
|
description = "File handling utilities for CrewAI multimodal inputs"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Greyson LaLonde", email = "greyson@crewai.com" }
|
|
]
|
|
requires-python = ">=3.10, <3.14"
|
|
dependencies = [
|
|
"Pillow~=12.1.1",
|
|
"pypdf~=6.7.5",
|
|
"python-magic>=0.4.27",
|
|
"aiocache~=0.12.3",
|
|
"aiofiles~=24.1.0",
|
|
"tinytag~=1.10.0",
|
|
"av~=13.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.version]
|
|
path = "src/crewai_files/__init__.py"
|