Skip to content

Commit d873a96

Browse files
committed
⬆️ v0.0.15
- improve LocalBox - small bug fixes - extend package config - cleanup
1 parent 380b482 commit d873a96

File tree

1 file changed

+23
-3
lines changed

1 file changed

+23
-3
lines changed

pyproject.toml

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
[tool.poetry]
22
name = "codeboxapi"
33
version = "0.0.15"
4-
description = "CodeBox is the simplest cloud infrastructure for your LLM Apps and Services."
54
authors = ["Shroominic <[email protected]>"]
6-
readme = "README.md"
75
license = "MIT"
6+
description = "CodeBox is the simplest cloud infrastructure for your LLM Apps and Services."
7+
keywords = ["codebox", "api", "cloud", "cloud-infra", "llm", "apps", "codeinterpreterapi"]
8+
readme = "README.md"
9+
homepage = "https://codeboxapi.com/"
10+
documentation = "https://codeboxapi.com/docs/"
11+
repository = "https://github.com/shroominic/codebox-api"
12+
classifiers = [
13+
"Programming Language :: Python :: 3.9+",
14+
"License :: OSI Approved :: MIT License",
15+
"Operating System :: OS Independent",
16+
"Intended Audience :: Developers",
17+
"Topic :: Software Development :: Libraries :: API Wrappers",
18+
"Topic :: Software Development :: Libraries :: Python Modules",
19+
"Topic :: Software Development :: Cloud Infrastructure :: Serverless",
20+
"Topic :: Artificial Intelligence :: Large Language Models :: Agent Tools",
21+
]
822

923
[tool.poetry.dependencies]
1024
python = "^3.9"
@@ -21,10 +35,16 @@ all = ["jupyter-kernel-gateway", "Pillow"]
2135
local_support = ["jupyter-kernel-gateway"]
2236
image_support = ["Pillow"]
2337

24-
[tool.poetry.dev-dependencies]
38+
[tool.poetry.group.dev.dependencies]
2539
pytest = "^7.4.0"
2640
pre-commit = "^3.3"
2741

42+
[tool.poetry.group.docs]
43+
optional = true
44+
45+
[tool.poetry.group.docs.dependencies]
46+
mkdocs = "*"
47+
2848
[build-system]
2949
requires = ["poetry-core>=1.0.0"]
3050
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)