-
Notifications
You must be signed in to change notification settings - Fork 109
/
setup.py
56 lines (48 loc) · 1.79 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
47
48
49
50
51
52
53
54
55
56
"""ML-ENSEMBLE
:author: Sebastian Flennerhag
:copyright: 2017-2018
:license: MIT
ML-Ensemble - a library for Ensemble Learning
"""
from setuptools import setup, find_packages
import mlens
VERSION = mlens.__version__
setup(name='mlens',
version=VERSION,
description='Machine Learning Ensemble Library',
author='Sebastian Flennerhag',
author_email='[email protected]',
url='https://github.com/flennerhag/mlens',
packages=find_packages(),
package_data={'': ['LICENSE.txt',
'README.md',
'requirements.txt'
]
},
include_package_data=True,
install_requires=['numpy>=1.11',
'scipy>=0.17'],
license='MIT',
platforms='any',
classifiers=['License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
long_description="""
A library for memory efficient parallelized Ensemble learning
Documentation available at:
- http://mlens.readthedocs.io/en/latest/
- https://github.com/flennerhag/mlens
Contact
=======
For questions and comments reach out to [email protected].
This project is hosted at https://github.com/flennerhag/mlens
""")