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