-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpyproject.toml
40 lines (36 loc) · 895 Bytes
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agentarium"
version = "0.3.0"
authors = [
{ name = "thytu" },
]
description = "A framework for managing and orchestrating AI agents"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"openai>=1.57.2",
"faker>=33.1.0",
"PyYAML>=6.0.1",
"boto3>=1.35.86",
"aisuite>=0.1.7",
"dill>=0.3.8",
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --cov=agentarium --cov-report=term-missing --cov-fail-under=80"
[project.urls]
Homepage = "https://github.com/thytu/Agentarium"