Upload pyproject.toml
Browse files- pyproject.toml +81 -0
pyproject.toml
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "open-interpreter"
|
3 |
+
packages = [
|
4 |
+
{include = "interpreter"},
|
5 |
+
]
|
6 |
+
version = "0.2.5" # Use "-rc1", "-rc2", etc. for pre-release versions
|
7 |
+
description = "Let language models run code"
|
8 |
+
authors = ["Killian Lucas <[email protected]>"]
|
9 |
+
readme = "README.md"
|
10 |
+
|
11 |
+
[tool.poetry.dependencies]
|
12 |
+
python = ">=3.9,<4"
|
13 |
+
|
14 |
+
astor = "^0.8.1"
|
15 |
+
git-python = "^1.0.3"
|
16 |
+
inquirer = "^3.1.3"
|
17 |
+
litellm = "^1.34.38"
|
18 |
+
pyyaml = "^6.0.1"
|
19 |
+
rich = "^13.4.2"
|
20 |
+
six = "^1.16.0"
|
21 |
+
tokentrim = "^0.1.13"
|
22 |
+
wget = "^3.2"
|
23 |
+
psutil = "^5.9.6"
|
24 |
+
pyreadline3 = {version = "^3.4.1", markers = "sys_platform == 'win32'"}
|
25 |
+
html2image = "^2.0.4.3"
|
26 |
+
ipykernel = "^6.26.0"
|
27 |
+
jupyter-client = "^8.6.0"
|
28 |
+
matplotlib = "^3.8.2"
|
29 |
+
toml = "^0.10.2"
|
30 |
+
posthog = "^3.1.0"
|
31 |
+
tiktoken = "^0.6.0"
|
32 |
+
|
33 |
+
|
34 |
+
#Optional dependencies
|
35 |
+
opencv-python = { version = "^4.8.1.78", optional = false }
|
36 |
+
pyautogui = "^0.9.54"
|
37 |
+
plyer = "^2.1.0"
|
38 |
+
pywinctl = "^0.3"
|
39 |
+
semgrep = { version = "^1.52.0", optional = true }
|
40 |
+
yaspin = { version = "^3.0.1", optional = true }
|
41 |
+
pytesseract = { version = "^0.3.10", optional = true }
|
42 |
+
sentence-transformers = { version = "^2.5.1", optional = true }
|
43 |
+
nltk = { version = "^3.8.1", optional = true }
|
44 |
+
ipywidgets = { version = "^8.1.2", optional = true }
|
45 |
+
torch = { version = "^2.2.1", optional = true }
|
46 |
+
timm = { version = "^0.9.16", optional = true }
|
47 |
+
prompt-toolkit = "^3.0.43"
|
48 |
+
send2trash = "^1.8.2"
|
49 |
+
uvicorn = "^0.27.0"
|
50 |
+
fastapi = "^0.110.0"
|
51 |
+
platformdirs = "^4.2.0"
|
52 |
+
pydantic = "^2.6.4"
|
53 |
+
screeninfo = "^0.8.1"
|
54 |
+
aifs = "^0.0.15"
|
55 |
+
|
56 |
+
[tool.poetry.extras]
|
57 |
+
os = ["opencv-python", "pyautogui", "plyer", "pywinctl", "pytesseract", "sentence-transformers", "ipywidgets", "torch", "timm"]
|
58 |
+
safe = ["semgrep", "yaspin"]
|
59 |
+
|
60 |
+
[tool.poetry.group.dev.dependencies]
|
61 |
+
black = "^23.10.1"
|
62 |
+
isort = "^5.12.0"
|
63 |
+
pre-commit = "^3.5.0"
|
64 |
+
pytest = "^7.4.0"
|
65 |
+
sniffio = "^1.3.0"
|
66 |
+
|
67 |
+
[build-system]
|
68 |
+
requires = ["poetry-core>=1.0.0"]
|
69 |
+
build-backend = "poetry.core.masonry.api"
|
70 |
+
|
71 |
+
[tool.poetry.scripts]
|
72 |
+
interpreter = "interpreter.terminal_interface.start_terminal_interface:main"
|
73 |
+
i = "interpreter.terminal_interface.start_terminal_interface:main"
|
74 |
+
|
75 |
+
[tool.black]
|
76 |
+
target-version = ['py311']
|
77 |
+
|
78 |
+
[tool.isort]
|
79 |
+
profile = "black"
|
80 |
+
multi_line_output = 3
|
81 |
+
include_trailing_comma = true
|