Files
crewAI/lib/devtools/pyproject.toml
Greyson LaLonde b0b28ab082 chore: add exclude-newer = 7 days to all pyproject.toml files
Prevents uv from resolving packages released less than 7 days ago,
mitigating supply chain attacks on transient dependencies.
2026-04-04 01:37:00 +08:00

38 lines
876 B
TOML

[project]
name = "crewai-devtools"
dynamic = ["version"]
description = "Development tools for version bumping and git automation"
readme = "README.md"
authors = [
{ name = "Greyson R. LaLonde", email = "greyson@crewai.com" },
]
requires-python = ">=3.10, <3.14"
classifiers = ["Private :: Do Not Upload"]
private = true
dependencies = [
"click~=8.1.7",
"toml~=0.10.2",
"openai~=1.83.0",
"python-dotenv~=1.1.1",
"pygithub~=1.59.1",
"rich>=13.9.4",
]
[project.scripts]
bump-version = "crewai_devtools.cli:bump"
tag = "crewai_devtools.cli:tag"
release = "crewai_devtools.cli:release"
docs-check = "crewai_devtools.docs_check:docs_check"
devtools = "crewai_devtools.cli:main"
[tool.uv]
exclude-newer = "7 days"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/crewai_devtools/__init__.py"