-
Notifications
You must be signed in to change notification settings - Fork 94
/
pyproject.toml
82 lines (77 loc) · 1.46 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
"/images",
"/scripts",
]
[project]
name = "lean-dojo"
version = "2.2.0"
authors = [
{ name="Kaiyu Yang", email="[email protected]" },
]
description = "LeanDojo: Machine Learning for Theorem Proving in Lean"
keywords = ["theorem proving", "machine learning", "Lean"]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9,<=3.12" # https://docs.ray.io/en/latest/ray-overview/installation.html#daily-releases-nightlies
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"python-dotenv",
"loguru",
"filelock",
"gitpython",
"psutil",
"pexpect",
"types-psutil",
"tqdm",
"toml",
"types-toml",
"networkx",
"lxml",
"PyGithub",
"ray[default] >= 2.8",
]
[project.optional-dependencies]
dev = [
"ipython",
"notebook",
"hatch"
]
test = [
"pytest",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
]
lint = [
"mypy",
"black[jupyter]",
]
all = [
"ipython",
"notebook",
"hatch",
"pytest",
"sphinx",
"sphinx-rtd-theme",
"mypy",
"black[jupyter]",
]
[project.urls]
"Homepage" = "https://leandojo.org/"
"Bug Tracker" = "https://github.com/lean-dojo/LeanDojo/issues"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]