-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (61 loc) · 1.65 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
[tool.poetry]
name = "planai"
version = "0.2"
description = "A simple framework for coordinating classical compute and LLM-based tasks."
authors = ["Niels Provos <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/provos/planai"
documentation = "https://planai.readthedocs.io"
keywords = ["ai", "automation", "workflow", "llm"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "planai", from = "src" },
]
exclude = ["examples"]
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^2.8.2"
python-dotenv = "^1.0.1"
ollama = "^0.3.1"
diskcache = "^5.6.3"
paramiko = "^3.4.1"
openai = "^1.42.0"
flask = "^3.0.3"
anthropic = "^0.34.2"
colorama = "^0.4.6"
playwright = "^1.49.1"
beautifulsoup4 = "^4.12.3"
html2text = "^2024.2.26"
dicttoxml = "^1.7.16"
psutil = "^6.1.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
sphinx = "^7.0.0"
sphinx-rtd-theme = "^1.3.0"
flake8 = "^7.1.1"
black = "^24.8.0"
pre-commit = "^3.8.0"
docutils = ">=0.17,<0.19"
sphinx-argparse = "^0.4.0"
pytest-timeout = "^2.2.0"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
planai = "planai.cli:main"
[tool.poetry.extras]
docs = ["sphinx", "sphinx_rtd_theme", "sphinx-argparse"]
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^7.0.0"
sphinx_rtd_theme = "^1.3.0"
sphinx-argparse = "^0.4.0"