forked from dustinstansbury/stacked_generalization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (21 loc) · 853 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
from setuptools import setup, find_packages
from codecs import open
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='stacked_generalization',
packages=find_packages(),
version='0.0.0',
description='Python implementation of stacked generalization. Plays nicely with sklearn',
long_description=long_description,
url='https://github.com/dustinstansbury/stacked_generalization',
author='Dustin Stansbury',
author_email='https://[email protected]',
keywords='machine learning, stacked generalization, ensemble methods, classification algorithms',
install_requires=['numpy>1.6.1',
'scipy',
'scikit-learn'
],
)