-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 839 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 839 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",
"scikit-learn",
"xgboost",
"litellm",
"black"
]
setuptools.setup(
name="trace-opt",
version=__version__,
author="Trace Team",
author_email="chinganc@microsoft.com",
url="https://github.com/microsoft/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",
)