-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
31 lines (25 loc) · 831 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
import io
import os
from setuptools import setup, find_packages
version = '0.0.6'
install_requires = [
'numpy',
'scikit-learn',
'pandas',
]
CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))
def read(filename):
return io.open(os.path.join(CURRENT_DIR, filename), encoding='utf-8').read()
setup(name='stacked_generalization',
version=version,
description='Machine Learning Stacking Util',
keywords = 'Stacking, Machine Learning',
author='Ryosuke Fukatani',
author_email='[email protected]',
url='https://github.com/fukatani/stacked_generalization',
license="Apache License 2.0",
packages=find_packages(),
package_data={ 'stacked_generalization' : ['Readme.md'], },
long_description='Readme.rst',
install_requires=install_requires,
)