https://github.com/scikit-learn-contrib/metric-learn
Revision 11b36a48abe6c3bf1d43eb381a105f48282ee87b authored by CJ Carey on 08 September 2014, 21:18:04 UTC, committed by CJ Carey on 08 September 2014, 21:18:04 UTC
1 parent c6853f2
Raw File
Tip revision: 11b36a48abe6c3bf1d43eb381a105f48282ee87b authored by CJ Carey on 08 September 2014, 21:18:04 UTC
converting LSML
Tip revision: 11b36a4
setup.py
#!/usr/bin/env python
from setuptools import setup

version = "0.1.0"
setup(name='metric_learn',
      version=version,
      description='Python implementations of metric learning algorithms',
      author='CJ Carey',
      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',
      ],
      packages=['metric_learn'],
      install_requires=[
          'numpy >= 1.5.1',
          'scipy >= 0.8',
          'scikit-learn'
      ],
      test_suite='test'
      )

back to top