forked from OpenInterpreter/open-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (57 loc) · 1.6 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
[tool.poetry]
name = "open-interpreter"
packages = [
{include = "interpreter"},
]
version = "0.2.0"
description = "Let language models run code."
authors = ["Killian Lucas <killian@openinterpreter.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
appdirs = "^1.4.4"
astor = "^0.8.1"
git-python = "^1.0.3"
inquirer = "^3.1.3"
litellm = "0.13.2"
openai = "^0.28.0"
pyyaml = "^6.0.1"
rich = "^13.4.2"
six = "^1.16.0"
tiktoken = "^0.4.0"
tokentrim = "^0.1.13"
wget = "^3.2"
psutil = "^5.9.6"
pyreadline3 = {version = "^3.4.1", markers = "sys_platform == 'win32'"}
html2image = "^2.0.4.3"
ipykernel = "^6.26.0"
jupyter-client = "^8.6.0"
matplotlib = "^3.8.2"
#Optional dependencies
pytesseract = { version = "^0.3.10", optional = true }
pyautogui = { version = "^0.9.54", optional = true }
opencv-python = { version = "^4.8.1.78", optional = true }
ipython = { version = "^8.18.1", optional = true }
CairoSVG = { version = "^2.7.1", optional = true }
semgrep = { version = "^1.52.0", optional = true }
yaspin = { version = "^3.0.1", optional = true }
[tool.poetry.extras]
os = ["pytesseract", "pyautogui", "opencv-python", "ipython", "CairoSVG"]
safe = ["semgrep", "yaspin"]
[tool.poetry.group.dev.dependencies]
black = "^23.10.1"
isort = "^5.12.0"
pre-commit = "^3.5.0"
pytest = "^7.4.0"
sniffio = "^1.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
interpreter = "interpreter:start_terminal_interface"
[tool.black]
target-version = ['py311']
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true