forked from richardyc/Chrome-GPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 807 Bytes
/
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
[tool.poetry]
name = "chrome-gpt"
version = "0.1.0"
description = "An AutoGPT agent that uses Chrome interactively on your desktop"
authors = ["Richard He <he.yucheng@outlook.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
langchain = ">=0.0.157"
selenium = "^4.9.0"
pytest = "^7.3.1"
mypy = "^1.2.0"
black = "^23.3.0"
ruff = "^0.0.263"
faiss-cpu = "^1.7.4"
click = "^8.1.3"
openai = "^0.27.4"
tiktoken = "^0.3.3"
validators = "^0.20.0"
pexpect = "^4.8.0"
unidecode = "1.3.6"
bs4 = "^0.0.1"
[tool.ruff]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
]
[tool.mypy]
ignore_missing_imports = "True"
disallow_untyped_defs = "True"
exclude = ["notebooks"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"