-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.13 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
[tool.poetry]
name = "playbooks"
version = "0.2.0"
license = "LICENSE-CODE"
description = "A framework for creating AI agents using natural language programming"
authors = ["Amol Kelkar <[email protected]>"]
readme = "README.md"
packages = [{include = "playbooks", from = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
openai = "*"
anthropic = "*"
google_cloud_aiplatform = "*"
typer = "*"
rich = "*"
python_dotenv = "*"
litellm = "*"
md2py = "*"
sqlalchemy = "^2.0.36"
alembic = "^1.14.0"
markdown-it-py = "^3.0.0"
redis = "^5.2.1"
diskcache = "^5.6.3"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest_cov = "^4.1.0"
black = "^23.7.0"
ruff = "*"
pyright = "*"
pytest_asyncio = "*"
autogen_core = "^0.4.0.dev13"
mypy = "*"
pytest-mock = "^3.14.0"
pre-commit = "^4.0.1"
tavily-python = "^0.5.0"
sphinx = "^7.2.6"
sphinx-rtd-theme = "^2.0.0"
sphinx-autodoc-typehints = "^2.0.0"
myst-parser = "^2.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
select = ["E", "F", "B"]
ignore = ["B006", "B018", "E501"]
line-length = 88
[tool.poetry.scripts]
playbooks = "playbooks.cli.cli:main"