-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (60 loc) · 1.83 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "agentsched"
version = "0.0.1"
authors = ["Appointat"]
description = "A scheduler for LLM-based agents that optimizes message routing through load balancing, connection pooling, and dynamic scaling to improve concurrent processing and efficient communication with LLMs."
readme = "README.md"
keywords = [
"message routing",
"message queue",
"load balancing",
"connection pool",
"LLM based agent",
"large-language-models",
"artificial-intelligence",
]
packages = [
{ include = "agentsched" },
]
license = "Apache License 2.0"
homepage = "https://github.com/Appointat/AgentSched/tree/main"
repository = "https://github.com/Appointat/AgentSched/tree/main"
documentation = "https://github.com/Appointat/AgentSched/tree/main"
[tool.poetry.dependencies]
python = "^3.9"
# openai
openai = "1.44.1"
# kafaka
confluent-kafka = "2.5.0"
kafka-python = "2.0.2"
[tool.poetry.dev-dependencies]
pre-commit = "4.0.0"
pytest = "8.3.2"
[tool.ruff]
line-length = 88
target-version = "py39"
fix = true
fixable = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "COM", "DJ", "DTZ", "EM", "ERA", "EXE", "FBT", "ICN", "INP", "ISC", "NPY", "PD", "PGH", "PIE", "PL", "PT", "PTH", "PYI", "RET", "RSE", "RUF", "SIM", "SLF", "TCH", "TID", "TRY", "UP", "YTT"]
unfixable = []
unsafe-fixes = true
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
ignore = []
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "E402"]
[tool.ruff.lint.isort]
known-first-party = ["agentsched"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"