mirror of
https://github.com/onyx-dot-app/code-interpreter.git
synced 2026-07-21 16:55:24 -04:00
35 lines
748 B
TOML
35 lines
748 B
TOML
[build-system]
|
|
requires = ["hatchling>=1.25.0"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "executor"
|
|
version = "0.1.0"
|
|
description = "Dependency bundle for the code interpreter executor image"
|
|
requires-python = ">=3.11,<3.12"
|
|
license = { text = "MIT" }
|
|
authors = [{ name = "Chris Weaver" }]
|
|
dependencies = [
|
|
"matplotlib==3.9.1",
|
|
"matplotlib-inline>=0.1.7",
|
|
"matplotlib-venn>=1.1.2",
|
|
"numpy==1.26.4",
|
|
"opencv-python>=4.11.0.86",
|
|
"openpyxl>=3.1.5",
|
|
"pandas==2.2.2",
|
|
"pdfplumber>=0.11.7",
|
|
"pydantic>=2.11.9",
|
|
"python-pptx>=1.0.2",
|
|
"scikit-image>=0.25.2",
|
|
"scikit-learn>=1.7.2",
|
|
"scipy>=1.16.2",
|
|
"seaborn>=0.13.2",
|
|
"xgboost>=3.0.5",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = []
|
|
include = [
|
|
"README.md",
|
|
]
|