-
Notifications
You must be signed in to change notification settings - Fork 82
/
setup.py
34 lines (31 loc) · 885 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
31
32
33
34
try:
from setuptools import setup
setup # quiet "redefinition of unused ..." warning from pyflakes
# arguments that distutils doesn't understand
setuptools_kwargs = {
'install_requires': [
'numpy',
'scipy',
'cvxopt',
],
'provides': ['misvm'],
}
except ImportError:
from distutils.core import setup
setuptools_kwargs = {}
setup(name='misvm',
version="1.0",
description=(
"""
Implementations of various
multiple-instance support vector machine approaches
"""
),
author='Gary Doran',
author_email='[email protected]',
url='https://github.com/garydoranjr/misvm.git',
license="BSD compatable (see the LICENSE file)",
packages=['misvm'],
platforms=['unix'],
scripts=[],
**setuptools_kwargs)