-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (26 loc) · 805 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
from setuptools import setup
requirements = ["tensorflow", "scipy>=0.17", "numpy>=1.10", "scikit-learn>=0.20.2"]
setup(
name="TFTree",
version="0.1.8",
packages=["ttt"],
install_requires=requirements,
description="Tree to tensorflow",
long_description="""
ttt is a machine learning toolkit designed to efficiently perform
tree model exporting into tensorflow estimators.
""",
author="Peng Yu",
author_email="[email protected]",
url="https://github.com/yupbank/tree_to_tensorflow",
download_url="https://github.com/yupbank/tree_to_tensorflow/archive/0.1.8.tar.gz",
keywords=[
"tensorflow",
"machine learning",
"sklearn",
"spark",
"model-serving",
"xgboost",
],
classifiers=[],
)