-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.19 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
[tool.poetry]
name = "pilott"
version = "0.0.0"
description = "A powerful Python framework for building scalable multi-agent systems with built-in orchestration, LLM integration, and intelligent task processing. Features dynamic scaling, fault tolerance, and advanced load balancing."
authors = ["Anuj Gupta <anuj0456@gmail.com>"]
readme = "README.md"
[tool.poetry.urls]
Homepage = "https://pilottai.com"
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"
[tool.poetry.dependencies]
python = ">=3.9.1,<4.0"
pydantic = "^2.7.1"
pydantic-settings = "^2.2.1"
websockets = "^14.1"
psutil = "^6.1.1"
litellm = "^1.59.8"
langchain-openai = "^0.3.2"
[tool.poetry.group.dev.dependencies]
mkdocstrings = "^0.25.1"
mkdocs-material = "^9.5.24"
mkdocstrings-python = "^1.10.3"
mkdocs = "^1.6.0"
openai = "^1.30.2"
tk = "^0.1.0"
pytest = "^8.3.4"
pytest-asyncio = "^0.25.2"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry-dynamic-versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver" # Use semantic versioning style
pattern = "^v?(?P<base>\\d+\\.\\d+\\.\\d+)$"