Pantograph/pyproject.toml

28 lines
531 B
TOML
Raw Normal View History

2024-04-11 16:38:44 -07:00
[tool.poetry]
name = "pantograph"
version = "0.1.0"
description = "A machine-to-machine interaction system for Lean"
authors = ["Leni Aniva <v@leni.sh>"]
license = "GPL-3"
readme = "README.md"
[tool.poetry.dependencies]
2024-05-24 21:34:55 -07:00
python = "^3.10"
2024-04-19 16:47:35 -07:00
pexpect = "^4.9.0"
torch = "2.2.1"
2024-06-03 20:33:23 -07:00
# vllm = "0.4.1"
2024-05-31 18:48:20 -07:00
openai = "1.30.5"
2024-05-31 19:36:02 -07:00
fire = "0.6.0"
wandb = "0.17.0"
tenacity = "8.3.0"
2024-06-03 20:33:23 -07:00
numpy = "1.26.4"
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"