-
Notifications
You must be signed in to change notification settings - Fork 83
/
setup.py
46 lines (43 loc) · 1.75 KB
/
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
39
40
41
42
43
44
45
46
#! /usr/bin/env python
from setuptools import setup
long_desc = '''
Python package for stacking (stacked generalization) featuring lightweight functional API and fully compatible scikit-learn API.
Convenient way to automate OOF computation, prediction and bagging using any number of models.
'''
setup(name='vecstack',
version='0.4.0',
description='Python package for stacking (machine learning technique)',
long_description=long_desc,
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
],
keywords=['stacking', 'blending', 'bagging', 'ensemble', 'ensembling', 'machine learning'],
url='https://github.com/vecxoz/vecstack',
author='Igor Ivanov',
author_email='[email protected]',
license='MIT',
packages=['vecstack'],
install_requires=[
'numpy',
'scipy',
'scikit-learn>=0.18'
],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)