-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·35 lines (32 loc) · 957 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
from setuptools import setup
exec(open("bolift/version.py").read())
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="bolift",
version=__version__,
description="BayesOPT with LIFT",
author="Andrew White",
author_email="[email protected]",
url="https://github.com/whitead/bolift",
license="MIT",
packages=["bolift"],
install_requires=[
"numpy",
"langchain==0.0.330",
"openai==0.28.1",
"faiss-cpu",
"scipy",
"pandas",
"tiktoken",
],
extras_require={"gpr": ["scikit-learn", "torch", "botorch==0.9.2", "gpytorch"]},
test_suite="tests",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)