2024-04-11 16:38:44 -07:00
|
|
|
[tool.poetry]
|
|
|
|
name = "pantograph"
|
2025-01-10 17:07:35 -08:00
|
|
|
version = "0.2.24"
|
2024-04-11 16:38:44 -07:00
|
|
|
description = "A machine-to-machine interaction system for Lean"
|
|
|
|
authors = ["Leni Aniva <v@leni.sh>"]
|
|
|
|
license = "GPL-3"
|
|
|
|
readme = "README.md"
|
|
|
|
|
2024-12-10 16:36:41 -08:00
|
|
|
include = [
|
|
|
|
{ path = "pantograph/pantograph-repl", format = ["sdist", "wheel"] },
|
|
|
|
{ path = "pantograph/lean-toolchain", format = ["sdist", "wheel"] },
|
|
|
|
]
|
|
|
|
|
2024-04-11 16:38:44 -07:00
|
|
|
[tool.poetry.dependencies]
|
2024-10-01 11:34:30 -07:00
|
|
|
pexpect = "^4.9.0"
|
2025-01-10 17:07:35 -08:00
|
|
|
python = "~=3.12"
|
2024-04-11 16:38:44 -07:00
|
|
|
|
2024-04-19 16:47:35 -07:00
|
|
|
[tool.poetry.build]
|
|
|
|
generate-setup-file = false
|
|
|
|
script = "build.py"
|
2024-04-11 16:38:44 -07:00
|
|
|
|
2024-07-01 12:18:00 -07:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-10-01 11:34:30 -07:00
|
|
|
# Experiment related dependencies here to not clutter the main project dependencies.
|
2024-07-01 12:18:00 -07:00
|
|
|
notebook = "^7.2.1"
|
2024-10-03 12:53:07 -07:00
|
|
|
numpy = "^1.26.4"
|
2024-10-01 11:34:30 -07:00
|
|
|
openai = "^1.31.0"
|
2024-10-03 12:53:07 -07:00
|
|
|
sglang = "^0.1.16"
|
2024-10-01 11:34:30 -07:00
|
|
|
tenacity = "8.3.0"
|
|
|
|
tiktoken = "^0.7.0"
|
2024-10-03 12:53:07 -07:00
|
|
|
torch = "2.2.1"
|
2024-10-01 11:34:30 -07:00
|
|
|
wandb = "0.17.0"
|
2024-10-04 17:55:32 -07:00
|
|
|
termcolor = "^2.4.0"
|
2024-10-05 01:05:25 -07:00
|
|
|
# vllm = "0.4.1"
|
2024-10-08 19:20:57 -07:00
|
|
|
matplotlib = "^3.9.2"
|
|
|
|
seaborn = "^0.13.2"
|
|
|
|
pandas = "^2.2.3"
|
2024-10-18 15:27:57 -07:00
|
|
|
|
|
|
|
[tool.poetry.group.doc]
|
|
|
|
optional = true
|
|
|
|
[tool.poetry.group.doc.dependencies]
|
2024-10-17 21:03:18 -07:00
|
|
|
jupyter-book = "^1.0.3"
|
2024-07-01 12:18:00 -07:00
|
|
|
|
2024-04-11 16:38:44 -07:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|