Skip to content

Commit

Permalink
⬆️ v0.0.10
Browse files Browse the repository at this point in the history
- improve local execution with localbox
- update package config
- update deps
  • Loading branch information
shroominic committed Aug 5, 2023
1 parent 8972f77 commit 3e32cfc
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
[tool.poetry]
name = "codeinterpreterapi"
version = "0.0.9"
description = "CodeInterpreterAPI is an (unofficial) open source python interface for the ChatGPT CodeInterpreter."
version = "0.0.10"
authors = ["Shroominic <contact@shroominic.com>"]
readme = "README.md"
license = "MIT"
description = "CodeInterpreterAPI is an (unofficial) open source python interface for the ChatGPT CodeInterpreter."
keywords = ["codeinterpreter", "chatgpt", "codeinterpreterapi", "api", "langchain", "codeboxapi"]
readme = "README.md"
repository = "https://github.com/shroominic/codeinterpreter-api"

[tool.poetry.dependencies]
python = ">=3.9,<3.9.7 || >3.9.7,<4.0"
python-dotenv = "^1.0.0"
openai = "^0.27.8"
python-dotenv = "^1"
openai = "^0.27"
langchain = "^0.0.242"
codeboxapi = "^0.0.14"
codeboxapi = "^0.0.15"
streamlit = { version = "^1", optional = true }
jupyter-kernel-gateway = { version = "^2", optional = true }
Pillow = { version = "^9", optional = true }
Expand All @@ -22,10 +24,14 @@ localbox = ["jupyter-kernel-gateway"]
frontend = ["streamlit"]
image_support = ["Pillow"]

[tool.poetry.dev-dependencies]
pytest = "^7.4.0"
mypy = "^1.4.1"
black = "^23.7.0"
[tool.poetry.group.dev]
optional = true

[tool.poetry.group.dev.dependencies]
pytest = "^7"
mypy = "^1.4"
black = "^23"
flake8 = "^6"
pre-commit = "^3.3"

[build-system]
Expand Down

0 comments on commit 3e32cfc

Please sign in to comment.