-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (55 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (55 loc) · 1.79 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "prover_agent"
description = "An Agent-Based Framework for Formal Mathematical Proofs"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Kaito Baba", email = "k.ai.to47802@gmail.com" }]
urls = { Homepage = "https://github.com/kAIto47802/Prover-Agent" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Typing :: Typed",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = [
"data-science", "machine-learning", "deep-learning",
"ai", "artificial-intelligence",
"agent", "agent-framework", "agentic-ai",
"llm", "large-language-model",
"math", "theorem-proving", "automated-theorem-proving",
"lean", "proof-assistant", "formal-methods", "formal-verification",
"ai-for-math",
]
dependencies = [
"openai",
]
requires-python = ">=3.9"
dynamic = ["version"]
[project.optional-dependencies]
check = ["ruff", "mypy", "types-setuptools"]
data = ["datasets"]
server = ["vllm", "litellm[proxy]"]
other = [
"transformers",
"vllm",
"pantograph @ git+https://github.com/stanford-centaur/PyPantograph.git",
]
[tool.setuptools.dynamic]
version = { attr = "prover_agent.__version__" }
[tool.setuptools.packages.find]
include = ["prover_agent*"]
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
disallow_untyped_defs = true
exclude = ["^build/"]