feat: add crewai-tools library to workspace

This commit is contained in:
Greyson LaLonde
2025-09-26 14:37:51 -04:00
parent 98a8607c87
commit 14a1bf6317
7 changed files with 41 additions and 314 deletions

View File

@@ -0,0 +1 @@
3.13

0
lib/tools/README.md Normal file
View File

14
lib/tools/pyproject.toml Normal file
View File

@@ -0,0 +1,14 @@
[project]
name = "crewai-tools"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Greyson LaLonde", email = "greyson.r.lalonde@gmail.com" }
]
requires-python = ">=3.10, <3.14"
dependencies = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

View File

@@ -0,0 +1,2 @@
def hello() -> str:
return "Hello from crewai-tools!"

View File