forked from PasaLab/forestlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 865 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
30
31
32
33
34
35
36
37
38
# -*- coding:utf-8 -*-
"""
Setup configure.
"""
# Copyright 2017 Authors NJU PASA BigData Laboratory.
# Authors: Qiu Hu <huqiu00#163.com>
# License: Apache-2.0
from setuptools import setup, find_packages
install_requires = [
'numpy',
'scipy',
'scikit-learn',
'keras',
'ray',
'joblib',
'xgboost',
'psutil',
'matplotlib',
'pandas'
]
setup(
name="forestlayer",
version="0.1.6",
include_package_data=True,
author="ForestLayer Contributors",
author_email="huqiu00@163.com",
url="https://github.com/whatbeg/forestlayer",
license="apache",
packages=find_packages(),
install_requires=install_requires,
description="A scalable and fast deep forest learning library.",
keywords="deep learning, deep forest, machine learning, random forest, ray, keras, xgboost",
platforms=['any'],
)