-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
70 lines (58 loc) · 1.9 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
[tool.poetry]
name = "dendrite"
version = "0.2.8"
description = "Dendrite is a suite of tools that makes it easy to create web integrations for AI agents. With Dendrite your can: Authenticate on websites, Interact with elements, Extract structured data, Download and upload files, Fill out forms"
authors = [
"Arian Hanifi <[email protected]>",
"Charles Maddock <[email protected]>",
"Sebastian Thunman <[email protected]"]
readme = "README.md"
homepage = "https://dendrite.systems"
repository = "https://github.com/dendrite-systems/dendrite-python-sdk"
documentation = "https://docs.dendrite.systems/introduction"
keywords = ["AI agent", "playwright", "web", "web agents", "automation", "web extraction", "browser"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
include = ["dendrite/py.typed"]
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^2.6.0"
playwright = "^1.43.0"
bs4 = "^0.0.2"
lxml = "^5.2.1"
typing-extensions = "^4.12.0"
loguru = "^0.7.2"
httpx = "^0.27.2"
markdownify = "^0.13.1"
litellm = "^1.57.0"
pillow = "^11.0.0"
json-repair = "^0.30.1"
tldextract = "^5.1.3"
anthropic = "^0.42.0"
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.4"
pylint = "^3.2.6"
black = "^24.8.0"
poethepoet = "^0.29.0"
pylint-pydantic = "^0.3.2"
flake8 = "^7.1.1"
pytest = "^8.3.3"
pytest-asyncio = "^0.24.0"
autoflake = "^2.3.1"
isort = "^5.13.2"
[tool.pylint]
load-plugins = "pylint_pydantic"
[tool.poe.tasks]
generate_sync = "python scripts/generate_sync.py"
format_sync = "python -m black ./dendrite//browser/sync_api/"
build_sync = ["generate_sync", "format_sync"]
test_sync = "pytest tests/tests_sync"
[tool.poetry.scripts]
dendrite = "dendrite._cli.main:main"
[build-system]
requires = ["poetry-core", "requests", "python-dotenv", "pydantic"]
build-backend = "poetry.core.masonry.api"