forked from scikit-learn-contrib/metric-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·40 lines (39 loc) · 1.24 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
version = "0.3.0"
setup(name='metric-learn',
version=version,
description='Python implementations of metric learning algorithms',
author=['CJ Carey', 'Yuan Tang'],
author_email='[email protected]',
url='http://github.com/all-umass/metric-learn',
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=['metric_learn'],
install_requires=[
'numpy',
'scipy',
'scikit-learn',
'six'
],
extras_require=dict(
docs=['sphinx', 'shinx_rtd_theme', 'numpydoc'],
demo=['matplotlib'],
),
test_suite='test',
keywords=[
'Metric Learning',
'Large Margin Nearest Neighbor',
'Information Theoretic Metric Learning',
'Sparse Determinant Metric Learning',
'Least Squares Metric Learning',
'Neighborhood Components Analysis'
])