forked from EmergenceAI/Agent-E
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (58 loc) · 1.44 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
[build-system]
requires = ["uv"]
build-backend = "uv.build_api"
[project]
name = "Agent-E"
version = "0.1.0"
description = "Automation tool for agents to perform tasks starting with on the web browser."
authors = [
{ name = "Deepak Akkil", email = "deepak.akkil@merlyn.org" },
{ name = "Tamer Abuelsaad", email = "tea@merlyn.org" },
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"anthropic>=0.23.1",
"google-generativeai==0.5.1",
"nltk==3.8.1",
"pdfplumber==0.11.1",
"playwright==1.44.0",
"autogen-agentchat~=0.2",
"autogen-agentchat[anthropic]~=0.2",
"autogen-agentchat[groq]~=0.2",
"pydantic==2.6.2",
"python-dotenv==1.0.0",
"tabulate==0.9.0",
"nest-asyncio==1.6.0",
"fastapi==0.111.1",
"uvicorn==0.30.3",
"python-json-logger==2.0.7"
]
[project.optional-dependencies]
dev = [
"ruff>=0.0.79", # Ruff as a dev dependency for linting
"sphinx>=4.0.0", # for docs generation
"sphinx-rtd-theme>=1.0.0" # for docs generation
]
[project.scripts]
run = "main.py"
[tool.ruff]
src = ["ae"]
fix = false
show-fixes = true
show-source = true
line-length = 250
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"E", # pycodestyle error
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"W", # pycodestyle warning
]
ignore = ["E501"] # Ignore the "line too long" rule
[tool.ruff.lint.isort]
force-single-line = true
order-by-type = false