-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
96 lines (86 loc) · 1.98 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[project]
name = "codeboxapi"
version = "0.2.5"
description = "CodeBox gives you an easy scalable and isolated python interpreter for your LLM Agents."
keywords = [
"codeboxapi",
"code-interpreter",
"codebox-api",
"language model",
"codeinterpreterapi",
"code sandbox",
"codebox",
"agent infrastructure",
"agents",
"agent sandbox",
]
authors = [{ name = "Shroominic", email = "[email protected]" }]
dependencies = ["httpx>=0.27"]
readme = "README.md"
requires-python = ">= 3.9"
license = { text = "MIT" }
[project.urls]
repository = "https://github.com/shroominic/codebox-api"
api-reference = "https://codeboxapi.com/docs"
docs = "https://codeboxapi.com/docs"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"codeboxapi[all]",
"codeboxapi[docs]",
"codeboxapi[pytest]",
"codeboxapi[serve]",
"ruff",
"mypy",
"types-aiofiles>=24",
"types-pillow>=10",
]
[project.optional-dependencies]
docs = ["neoteroi-mkdocs", "mkdocs-material"]
pytest = ["pytest-asyncio"]
local = ["jupyter-client", "ipykernel", "uv", "aiofiles"]
vision = ["Pillow"]
serve = ["fastapi[standard]"]
data-science = [
"codeboxapi[local]",
"codeboxapi[vision]",
"pandas",
"numpy",
"matplotlib",
"seaborn",
"scikit-learn",
"uv",
"bokeh",
"dash",
"matplotlib",
"networkx",
"numpy",
"openpyxl",
"pandas",
"pillow",
"plotly",
"python-docx",
"scikit-learn",
"scipy",
"seaborn",
"statsmodels",
"sympy",
"yfinance",
]
all = ["codeboxapi[data-science]", "codeboxapi[serve]"]
[project.scripts]
codeboxapi-serve = "codeboxapi.api:serve"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/codeboxapi"]
[tool.pytest.ini_options]
filterwarnings = "ignore::DeprecationWarning"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E701"]
[tool.ruff.format]
preview = true