-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·119 lines (107 loc) · 2.3 KB
/
Copy pathpyproject.toml
File metadata and controls
executable file
·119 lines (107 loc) · 2.3 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#[build-system]
#requires = ["setuptools"]
#build-backend = "setuptools.build_meta"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "reasoning_core"
dynamic = ["version"]
readme = "README.md"
description = "Procedural data generators for symbolic pre-training, also including RL environments"
dependencies = [
"typing-extensions",
"gramforge",
"faker",
"inflection",
"rapidfuzz",
"unified-planning[pyperplan]",
"tarski",
"tiktoken",
"networkx",
"z3-solver",
"pooch",
"requests",
"beautifulsoup4",
"easydict",
"appdirs",
"regex",
"greenery",
"tqdm",
"timeoutcontext",
"pandas",
"pyyaml",
"tabulate",
"duckdb",
"funcy",
"multiprocess",
"xpflow",
"exrex",
"nltk",
"wordfreq",
"pgmpy",
"unification",
"toolz",
"numpy",
"sympy",
"pyparsing",
"whatthepatch",
"lazy_object_proxy",
"udocker",
"wrapt",
"psutil",
"nfsdict",
]
[project.optional-dependencies]
prime = ["prime", "verifiers"]
reasoning_gym = ["reasoning_gym"]
[tool.setuptools.packages.find]
include = ["reasoning_core*"]
[tool.setuptools.package-data]
"reasoning_core" = ["resources/**"]
[tool.hatch.version]
path = "reasoning_core/__init__.py"
[tool.hatch.build]
skip-excluded-dirs = true
exclude = [
"/reasoning_core/**/__pycache__",
"/reasoning_core/**/.ipynb_checkpoints",
"/reasoning_core/.mountpoints/**",
"/reasoning_core/generated_data/**",
"/reasoning_core/index/**",
"/reasoning_core/score_cache/**",
]
[tool.hatch.build.targets.wheel]
packages = ["reasoning_core"]
[tool.hatch.build.targets.sdist]
include = [
"/GALLERY.md",
"/LICENSE",
"/README.md",
"/TASK_AUTHORING_GUIDE.md",
"/pyproject.toml",
"/reasoning_core",
"/tests",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
norecursedirs = [
".git",
".hypothesis",
".ipynb_checkpoints",
".mypy_cache",
".pytest_cache",
".ruff_cache",
".test",
".venv",
"__pycache__",
"checkpoints",
"data-gym-cache",
"per_task_results",
"per_task_results_rgym",
"reasoning_core/openenv",
"reasoning_core/.mountpoints",
"reasoning_core/generated_data",
"reasoning_core/index",
"reasoning_core/score_cache",
]