-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.22 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[project]
name = "bandai"
version = "0.4.0"
description = "BandAI using crewAI - Italian SME Procurement Agent"
authors = [
{ name = "Alessandro Sidero", email = "sideroalessandro@gmail.com" },
{ name = "FirstName LastName", email = "example@example.com" },
{ name = "Nhat Quang Dang", email = "dangnhatquang199@gmail.com" },
]
requires-python = ">=3.10,<3.14"
dependencies = [
"crewai[tools]==1.14.4",
"pyyaml>=6.0",
"python-dotenv>=1.0.0",
"ollama>=0.6.2",
]
[project.optional-dependencies]
dev = ["pytest>=8.0.0", "pytest-cov>=5.0.0"]
[project.scripts]
bandai = "bandai.main:run"
run_crew = "bandai.main:run"
train = "bandai.main:train"
replay = "bandai.main:replay"
test = "bandai.main:test"
run_with_trigger = "bandai.main:run_with_trigger"
kickoff = "bandai.main:run"
pytest_unit = "bandai.main:run_pytest"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.crewai]
type = "flow"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
markers = [
"unit: fast deterministic unit tests",
"mock_llm: integration-style tests using mocked Crew/LLM outputs",
"llm: real LLM smoke tests, skipped from regular CI/test runs",
]