-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (51 loc) · 1.71 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "flexiagent"
version = "0.1.0a9"
description = "FlexiAgent is an open-source framework for creating agents based on Directed Acyclic Graphs (DAGs), featuring a user-friendly interface, built-in practical agents, and high configurability for efficient task management and rapid deployment."
authors = ["Hiram Deng <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers = ["Typing :: Typed",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Libraries :: Python Modules"
]
homepage = "https://github.com/dzhsurf/flexiagent"
repository = "https://github.com/dzhsurf/flexiagent"
[tool.poetry.dependencies]
python = ">=3.9,<4"
sqlparse = "^0.5.1"
openai = "^1.43.0"
pydantic = "^2.9.0"
sqlalchemy = "^2.0.34"
llama-cpp-python = "^0.3.0"
huggingface-hub = "^0.24.6"
ray = "^2.37.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.11.2"
pytest = "^8.3.2"
ruff = "^0.6.4"
isort = "^5.13.2"
tqdm = "^4.66.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
log_cli = "True"
log_cli_level = "INFO"
[tool.ruff]
line-length = 88
[tool.isort]
line_length = 88
multi_line_output = 3 # Consider using 3 for Vertical Hanging Indent
include_trailing_comma = true
force_grid_wrap = 0 # No forced grid wrap
use_parentheses = true