mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 00:28:31 +00:00
feat: add crewai-tools library to workspace
This commit is contained in:
1
lib/tools/.python-version
Normal file
1
lib/tools/.python-version
Normal file
@@ -0,0 +1 @@
|
||||
3.13
|
||||
0
lib/tools/README.md
Normal file
0
lib/tools/README.md
Normal file
14
lib/tools/pyproject.toml
Normal file
14
lib/tools/pyproject.toml
Normal 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"
|
||||
2
lib/tools/src/crewai_tools/__init__.py
Normal file
2
lib/tools/src/crewai_tools/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
def hello() -> str:
|
||||
return "Hello from crewai-tools!"
|
||||
0
lib/tools/src/crewai_tools/py.typed
Normal file
0
lib/tools/src/crewai_tools/py.typed
Normal file
Reference in New Issue
Block a user