-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 806 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 806 Bytes
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
[tool.poetry]
name = "leantree"
version = "1.0.0"
description = "REPL interaction and data extraction for Lean 4."
authors = ["Matěj Kripner <kripner@ufal.mff.cuni.cz>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.12"
numpy = ">=1.26.4"
tqdm = ">=4.67.0"
PrettyPrintTree = ">=2.0.1"
psutil = ">=6.1.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
mypy = ">=1.11.2"
pytest = ">=8.3.3"
pytest-asyncio = ">=0.21.0"
requests = ">=2.32.3"
torch = ">=2.2.0"
scipy = ">=1.11.3"
transformers = ">=4.36.0"
datasets = ">=2.14.5"
[tool.poetry.scripts]
leanserver = "leantree.repl_adapter.start_server:main"
[tool.poetry.build]
script = "scripts/build_repl.py"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"