-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
46 lines (42 loc) · 1023 Bytes
/
setup.py
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
import sys
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
from codecs import open
if sys.version_info[:3] < (3, 0, 0):
print("Requires Python 3 to run.")
sys.exit(1)
with open("README.md", encoding="utf-8") as file:
readme = file.read()
setup(
name="saplings",
description="Build smarter AI agents with tree search",
long_description=readme,
long_description_content_type="text/markdown",
version="v5.0.5",
packages=find_packages(),
python_requires=">=3",
url="https://github.com/shobrook/saplings",
author="shobrook",
author_email="[email protected]",
# classifiers=[],
install_requires=[
"json-repair",
"openai",
"tiktoken",
],
keywords=[
"llm",
"agent",
"openai",
"search-algorithm",
"search",
"ai",
"monte carlo tree search",
"mcts",
"a*",
"greedy",
],
license="MIT",
)