-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
44 lines (40 loc) · 1.36 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Licensed under the MIT License - https://opensource.org/licenses/MIT
from setuptools import setup
DESCRIPTION = 'A set of python modules for ensemble learning and visualisation'
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
version = "0.2.4"
setup(name='pycobra',
version=version,
description='Python implementation of COBRA algorithm with regression analysis',
author=['Bhargav Srinivasa Desikan', 'Benjamin Guedj'],
author_email=['bhargavvader@gmail.com', 'benjamin.guedj@inria.fr'],
url='https://github.com/bhargavvader/pycobra',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering'
],
packages=['pycobra'],
install_requires=[
'numpy',
'scipy',
'scikit-learn',
'matplotlib',
'seaborn',
'pandas'
],
test_suite='tests',
keywords=[
'Aggregation of Predictors',
'Regression Analysis',
'Voronoi Tesselation',
'Statistical Aggregation'
],
long_description=LONG_DESCRIPTION)