forked from OpenInterpreter/open-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (33 loc) · 900 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
[tool.poetry]
name = "open-interpreter"
packages = [
{include = "interpreter"},
]
version = "0.1.1"
description = "Let language models run code locally."
authors = ["Killian Lucas <killian@drinkwater.ai>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
openai = "^0.27.8"
rich = "^13.4.2"
tiktoken = "^0.4.0"
astor = "^0.8.1"
git-python = "^1.0.3"
tokentrim = "^0.1.9"
appdirs = "^1.4.4"
six = "^1.16.0"
# On non-windows systems, you can just `import readline`.
# On windows, `pyreadline3` replaces that, so you can also just `import readline`.
inquirer = "^3.1.3"
wget = "^3.2"
[tool.poetry.dependencies.pyreadline3]
version = "^3.4.1"
markers = "sys_platform == 'win32'"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
interpreter = "interpreter:cli"