forked from Remmie0/OpenFunsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 767 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 767 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["funsearch", "funsearch.container"]
[project]
name = "funsearch"
dynamic = [
"version",
]
description = "FunSearch algorithm: Mathematical discoveries from program search with large language models"
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"absl-py==2.0.0",
"click==8.1",
"cloudpickle==3.0.0",
"llm==0.12",
"python-dotenv==1.0.0",
"scipy==1.11.4",
"numpy==1.26.2",
]
[project.scripts]
funsearch = "funsearch.__main__:main"