-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 889 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 889 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
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(os.path.join(here, "opto/version.py"), encoding="utf8") as fp:
exec(fp.read(), version)
__version__ = version["__version__"]
install_requires = [
"graphviz>=0.20.1",
"pytest",
"litellm>=1.64.0,<=1.82.6",
"black",
"scikit-learn",
]
setuptools.setup(
name="trace-opt",
version=__version__,
author="Trace Team",
author_email="chinganc0@gmail.com, aimingnie@gmail.com, adith387@gmail",
url="https://github.com/AgentOpt/Trace",
license='MIT LICENSE',
description="An AutoDiff-like tool for training AI systems end-to-end with general feedback",
long_description=open('README.md', encoding="utf8").read(),
packages=setuptools.find_packages(include=["opto*"]),
install_requires=install_requires,
python_requires=">=3.9",
)