mirror of
https://github.com/quachtinh113/main-fx.git
synced 2026-08-13 02:18:05 +00:00
25 lines
607 B
TOML
25 lines
607 B
TOML
[project]
|
|
name = "crewai_trading"
|
|
version = "0.1.0"
|
|
description = "crewai_trading using crewAI"
|
|
authors = [{ name = "Your Name", email = "you@example.com" }]
|
|
requires-python = ">=3.10,<3.14"
|
|
dependencies = [
|
|
"crewai[tools]==1.11.0"
|
|
]
|
|
|
|
[project.scripts]
|
|
crewai_trading = "crewai_trading.main:run"
|
|
run_crew = "crewai_trading.main:run"
|
|
train = "crewai_trading.main:train"
|
|
replay = "crewai_trading.main:replay"
|
|
test = "crewai_trading.main:test"
|
|
run_with_trigger = "crewai_trading.main:run_with_trigger"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.crewai]
|
|
type = "crew"
|