-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (49 loc) · 1.38 KB
/
setup.py
File metadata and controls
66 lines (49 loc) · 1.38 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import codecs
import os
import sys
try:
from setuptools import setup
except:
from distutils.core import setup
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname)).read()
NAME = "mlstacking"
PACKAGES = ["mlstacking",]
DESCRIPTION = "mlstacking is a Python module for sklearn-API friendly multi-layer stacking"
LONG_DESCRIPTION = read("README.md")
KEYWORDS = "stacking multi-layer ensemble-learning"
AUTHOR = "HaoWang"
AUTHOR_EMAIL = "hao.wang2@tendcloud.com"
URL = "https://github.com/TalkingData/MultiLayerStacking"
VERSION = "0.3.0"
LICENSE = "BSD 3-Clause License"
INSTALL_REQUIRES = [
'pandas >= 0.20.0',
'xgboost >= 0.7',
'lightgbm >= 2.2.3',
'matplotlib >= 2.1.2',
'hyperopt >= 0.1.2',
'numpy >= 1.11.0',
'scikit-learn >= 0.20.0',
]
setup(
name = NAME,
version = VERSION,
description = DESCRIPTION,
long_description = LONG_DESCRIPTION,
classifiers = [
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
keywords = KEYWORDS,
author = AUTHOR,
author_email = AUTHOR_EMAIL,
url = URL,
license = LICENSE,
packages = PACKAGES,
include_package_data=True,
zip_safe=True,
install_requires=INSTALL_REQUIRES,
)