Skip to content

Commit 3e32cfc

Browse files
committed
⬆️ v0.0.10
- improve local execution with localbox - update package config - update deps
1 parent 8972f77 commit 3e32cfc

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

pyproject.toml

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
[tool.poetry]
22
name = "codeinterpreterapi"
3-
version = "0.0.9"
4-
description = "CodeInterpreterAPI is an (unofficial) open source python interface for the ChatGPT CodeInterpreter."
3+
version = "0.0.10"
54
authors = ["Shroominic <[email protected]>"]
6-
readme = "README.md"
75
license = "MIT"
6+
description = "CodeInterpreterAPI is an (unofficial) open source python interface for the ChatGPT CodeInterpreter."
7+
keywords = ["codeinterpreter", "chatgpt", "codeinterpreterapi", "api", "langchain", "codeboxapi"]
8+
readme = "README.md"
9+
repository = "https://github.com/shroominic/codeinterpreter-api"
810

911
[tool.poetry.dependencies]
1012
python = ">=3.9,<3.9.7 || >3.9.7,<4.0"
11-
python-dotenv = "^1.0.0"
12-
openai = "^0.27.8"
13+
python-dotenv = "^1"
14+
openai = "^0.27"
1315
langchain = "^0.0.242"
14-
codeboxapi = "^0.0.14"
16+
codeboxapi = "^0.0.15"
1517
streamlit = { version = "^1", optional = true }
1618
jupyter-kernel-gateway = { version = "^2", optional = true }
1719
Pillow = { version = "^9", optional = true }
@@ -22,10 +24,14 @@ localbox = ["jupyter-kernel-gateway"]
2224
frontend = ["streamlit"]
2325
image_support = ["Pillow"]
2426

25-
[tool.poetry.dev-dependencies]
26-
pytest = "^7.4.0"
27-
mypy = "^1.4.1"
28-
black = "^23.7.0"
27+
[tool.poetry.group.dev]
28+
optional = true
29+
30+
[tool.poetry.group.dev.dependencies]
31+
pytest = "^7"
32+
mypy = "^1.4"
33+
black = "^23"
34+
flake8 = "^6"
2935
pre-commit = "^3.3"
3036

3137
[build-system]

0 commit comments

Comments
 (0)