forked from scikit-learn-contrib/metric-learn
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (40 loc) · 1.26 KB
/
setup.py
File metadata and controls
executable file
·41 lines (40 loc) · 1.26 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
version = "0.4.0"
setup(name='metric-learn',
version=version,
description='Python implementations of metric learning algorithms',
author=['CJ Carey', 'Yuan Tang'],
author_email='ccarey@cs.umass.edu',
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',
'deap'
],
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'
])