Skip to content

Commit 2c21ea7

Browse files
Merge pull request #5 from terrytangyuan/dev
Some minor additions
2 parents b501468 + 92ea557 commit 2c21ea7

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed
File renamed without changes.

README.md renamed to README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[![Travis-CI Build Status](https://api.travis-ci.org/all-umass/metric_learn.svg?branch=master)](https://travis-ci.org/all-umass/metric_learn)
22
[![License](http://img.shields.io/:license-mit-blue.svg?style=flat)](http://badges.mit-license.org)
3+
34
# metric_learn
45

56
Metric Learning algorithms in Python.

setup.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[bdist_wheel]
2+
universal = 1
3+
4+
[metadata]
5+
description-file = README.rst

setup.py

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,30 @@
66
setup(name='metric_learn',
77
version=version,
88
description='Python implementations of metric learning algorithms',
9-
author='CJ Carey',
9+
author=['CJ Carey', 'Yuan Tang'],
1010
author_email='[email protected]',
1111
url='http://github.com/all-umass/metric_learn',
1212
license='MIT',
1313
classifiers=[
1414
'Development Status :: 4 - Beta',
1515
'License :: OSI Approved :: MIT License',
1616
'Programming Language :: Python',
17+
'Operating System :: OS Independent',
18+
'Intended Audience :: Science/Research',
19+
'Topic :: Scientific/Engineering'
1720
],
1821
packages=['metric_learn'],
1922
install_requires=[
2023
'numpy',
2124
'scipy',
2225
'scikit-learn'
2326
],
24-
test_suite='test'
25-
)
27+
test_suite='test',
28+
keywords=[
29+
'Metric Learning',
30+
'Large Margin Nearest Neighbor',
31+
'Information Theoretic Metric Learning',
32+
'Sparse Determinant Metric Learning',
33+
'Least Squares Metric Learning',
34+
'Neighborhood Components Analysis'
35+
])

0 commit comments

Comments
 (0)