Skip to content

Commit

Permalink
⬆️ v0.0.15
Browse files Browse the repository at this point in the history
- improve LocalBox
- small bug fixes
- extend package config
- cleanup
  • Loading branch information
shroominic committed Aug 5, 2023
1 parent 380b482 commit d873a96
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
[tool.poetry]
name = "codeboxapi"
version = "0.0.15"
description = "CodeBox is the simplest cloud infrastructure for your LLM Apps and Services."
authors = ["Shroominic <contact@shroominic.com>"]
readme = "README.md"
license = "MIT"
description = "CodeBox is the simplest cloud infrastructure for your LLM Apps and Services."
keywords = ["codebox", "api", "cloud", "cloud-infra", "llm", "apps", "codeinterpreterapi"]
readme = "README.md"
homepage = "https://codeboxapi.com/"
documentation = "https://codeboxapi.com/docs/"
repository = "https://github.com/shroominic/codebox-api"
classifiers = [
"Programming Language :: Python :: 3.9+",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: API Wrappers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Cloud Infrastructure :: Serverless",
"Topic :: Artificial Intelligence :: Large Language Models :: Agent Tools",
]

[tool.poetry.dependencies]
python = "^3.9"
Expand All @@ -21,10 +35,16 @@ all = ["jupyter-kernel-gateway", "Pillow"]
local_support = ["jupyter-kernel-gateway"]
image_support = ["Pillow"]

[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pre-commit = "^3.3"

[tool.poetry.group.docs]
optional = true

[tool.poetry.group.docs.dependencies]
mkdocs = "*"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit d873a96

Please sign in to comment.