-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (91 loc) · 2.24 KB
/
Copy pathpyproject.toml
File metadata and controls
99 lines (91 loc) · 2.24 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lean-dojo-v2"
version = "1.0.9"
description = "A comprehensive library for AI-assisted theorem proving in Lean"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "LeanDojo-v2 Contributors"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.11"
dependencies = [
"torch>=1.12.0",
"pytorch-lightning[extra]>=1.9.0",
"transformers>=4.20.0",
"numpy>=1.21.0",
"deepspeed>=0.7.0",
"loguru>=0.6.0",
"networkx>=2.8.0",
"ray>=2.0.0",
"requests>=2.28.0",
"tqdm>=4.64.0",
"openai>=0.27.0",
"python-dotenv>=0.19.0",
"rank-bm25>=0.2.2",
"torchmetrics>=0.9.0",
"gitpython>=3.1.0",
"pexpect>=4.8.0",
"toml>=0.10.0",
"PyGithub>=1.58.0",
"lxml>=4.9.0",
"filelock>=3.8.0",
"psutil>=5.9.0",
"datasets>=4.0.0",
"trl>=0.25.1",
"peft>=0.17.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.0",
"pytest-cov>=6.2.1",
"black>=22.0.0",
"isort>=5.10.0",
"flake8>=5.0.0",
"mypy>=0.991",
]
[project.urls]
Homepage = "https://github.com/lean-dojo/LeanDojo-v2"
Repository = "https://github.com/lean-dojo/LeanDojo-v2"
Documentation = "https://github.com/lean-dojo/LeanDojo-v2"
"Bug Tracker" = "https://github.com/lean-dojo/LeanDojo-v2/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["lean_dojo_v2*"]
[tool.setuptools.package-data]
"lean_dojo_v2" = ["**/*.lean", "**/*.yaml"]
[tool.black]
line-length = 88
target-version = ['py311']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
known_first_party = ["lean_dojo_v2", "utils"]
[tool.uv.sources]
pantograph = { git = "https://github.com/stanford-centaur/PyPantograph" }