-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·27 lines (26 loc) · 1.18 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
from distutils.core import setup
setup(
name = 'semisup-metrics',
version = '0.1',
author = 'Marc Claesen',
author_email = '[email protected]',
py_modules = ['semisup_metrics'],
url = 'http://semisup-metrics.readthedocs.org',
license = 'LICENSE.txt',
description = 'Performance metrics for semi-supervised classification',
long_description = open('README.rst').read(),
classifiers = ['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis'
],
platforms = ['any'],
keywords = ['machine learning', 'semi-supervised learning', 'classification',
'performance metrics', 'roc'],
install_requires = ['numpy', 'scipy', 'optunity']
)