Spaces:
Runtime error
Runtime error
Shroominic
commited on
Commit
·
d49d9f5
1
Parent(s):
cd99429
add pyproject
Browse files- pyproject.toml +23 -0
pyproject.toml
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[tool.poetry]
|
| 2 |
+
name = "codeinterpreterapi"
|
| 3 |
+
version = "0.0.1"
|
| 4 |
+
description = "CodeInterpreterAPI is a Python Interface for the ChatGPT CodeInterpreter."
|
| 5 |
+
authors = ["Shroominic <pleurae-berets.0u@icloud.com>"]
|
| 6 |
+
readme = "README.md"
|
| 7 |
+
license = "MIT"
|
| 8 |
+
|
| 9 |
+
[tool.poetry.dependencies]
|
| 10 |
+
python = "^3.9"
|
| 11 |
+
python-dotenv = "^1.0.0"
|
| 12 |
+
langchain = "^0.0.232"
|
| 13 |
+
codeboxapi = "^0.0.5"
|
| 14 |
+
|
| 15 |
+
[tool.poetry.extras]
|
| 16 |
+
image_support = ["Pillow"]
|
| 17 |
+
|
| 18 |
+
[tool.poetry.dev-dependencies]
|
| 19 |
+
pytest = "^7.4.0"
|
| 20 |
+
|
| 21 |
+
[build-system]
|
| 22 |
+
requires = ["poetry-core>=1.0.0"]
|
| 23 |
+
build-backend = "poetry.core.masonry.api"
|