forked from fdtomasi/multikernel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (44 loc) · 1.72 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
#!/usr/bin/python
"""mtmkl setup script.
Author: Federico Tomasi, Vanessa D'Amario
Copyright (c) 2018, Federico Tomasi, Vanessa D'Amario.
Licensed under the BSD 3-Clause License (see LICENSE.txt).
"""
from setuptools import find_packages, setup
from mtmkl import __version__ as version
setup(
name='mtmkl',
version=version,
description=('MT-MKL (Multi Task Multiple Kernel Learning)'),
long_description=open('README.md').read(),
author='Federico Tomasi, Vanessa D\'Amario',
author_email='[email protected], [email protected]',
maintainer='Federico Tomasi, Vanessa D\'Amario',
maintainer_email='[email protected], [email protected]',
download_url='https://github.com/slipguru/mt-mkl/archive/',
url='https://github.com/slipguru/mt-mklv%s.tar.gz' % version,
keywords=['kernel', 'machine learning', 'time series', 'epilepsy', 'wavelet'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python'
],
license='FreeBSD',
packages=find_packages(exclude=["*.__old", "*.tests"]),
include_package_data=True,
requires=['numpy (>=1.11)',
'scipy (>=0.16.1,>=1.0)',
'pywt',
'sklearn (>=0.20)',
'six'],
)