forked from parrt/dtreeviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (19 loc) · 867 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
# python setup.py sdist upload
setup(
name='dtreeviz',
version='1.3.2',
url='https://github.com/parrt/dtreeviz',
license='MIT',
packages=find_packages(),
install_requires=['graphviz>=0.9','pandas','numpy','scikit-learn',
'matplotlib','colour', 'pytest'],
extras_require={'xgboost': ['xgboost'], 'pyspark':['pyspark'], 'lightgbm':['lightgbm']},
python_requires='>=3.6',
author='Terence Parr, Tudor Lapusan, and Prince Grover',
author_email='[email protected]',
description='A Python 3 library for sci-kit learn, XGBoost, LightGBM, and Spark decision tree visualization',
keywords='machine-learning data structures trees visualization',
classifiers=['License :: OSI Approved :: MIT License',
'Intended Audience :: Developers']
)