Pantograph/pyproject.toml

34 lines
736 B
TOML
Raw Normal View History

2024-04-11 16:38:44 -07:00
[tool.poetry]
name = "pantograph"
2024-10-03 01:33:25 -07:00
version = "0.2.19"
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"
[tool.poetry.dependencies]
pexpect = "^4.9.0"
python = "^3.10"
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]
# Experiment related dependencies here to not clutter the main project dependencies.
fire = "0.6.0"
2024-07-01 12:18:00 -07:00
notebook = "^7.2.1"
numpy = "^1.26.4"
openai = "^1.31.0"
sglang = "^0.1.16"
tenacity = "8.3.0"
tiktoken = "^0.7.0"
torch = "2.2.1"
wandb = "0.17.0"
termcolor = "^2.4.0"
# vllm = "0.4.1"
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"