-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
90 lines (79 loc) · 2.59 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# LICENSE HEADER MANAGED BY add-license-header
#
# Copyright 2024-2025 Syntropix
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
[tool.poetry]
name = "synthora"
version = "0.1.8"
description = "Synthora is a lightweight and extensible framework for LLM-driven Agents and ALM research. It provides essential components to build, test and evaluate agents. At its core, Synthora aims to assemble an agent with a single config, thus minimizing your effort in building, tuning, and sharing agents."
authors = ["Syntropix.AI"]
license = "Apache 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^2.10.1"
docstring-parser = "^0.16"
asyncio = "^3.4.3"
openai = "^1.55.0"
rich = "^13.9.4"
websockets = "^14.1"
fastapi = "^0.115.5"
python-dotenv = "^1.0.1"
discord-py = {version = "^2.4.0", optional = true}
googlesearch-python = {version = "^1.2.5", optional = true}
slack-bolt = {version = "^1.22.0", optional = true}
trafilatura = {version = "^2.0.0", optional = true}
wikipedia = {version = "^1.4.0", optional = true}
pymediawiki = "^0.7.5"
apscheduler = "^3.11.0"
pyyaml = "^6.0.2"
[tool.poetry.extras]
services = ["discord-py", "slack-bolt"]
toolkits = ["googlesearch-python", "trafilatura", "wikipedia", "pymediawiki"]
[tool.poetry.group.quality.dependencies]
black = "^24.10.0"
ruff = "^0.8.0"
pre-commit = "^4.0.1"
mypy = "^1.13.0"
types-pyyaml = "^6.0.12.20240917"
add-license-header = "^2.2.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
pytest-asyncio = "^0.25.3"
[tool.poetry.group.dev.dependencies]
sphinx = "^8.1.3"
myst-parser = "^4.0.0"
sphinx-rtd-theme = "^3.0.2"
sphinx-book-theme = "^1.1.3"
nbsphinx = "^0.9.5"
nbconvert = {extras = ["webpdf"], version = "^7.16.4"}
jupyter-sphinx = "^0.5.3"
jupyter = "^1.1.1"
myst-nb = "^1.1.2"
pandoc = "^2.4"
fastapi = {extras = ["standard"], version = "^0.115.5"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint.isort]
lines-after-imports = 2
known-first-party = ["syntropix"]
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = ["E", "W", "F", "I"]
[tool.mypy]
strict = true
mypy_path = "."