forked from scikit-multilearn/scikit-multilearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.16 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
#import sphinx_pypi_upload
setup(
name='scikit-multilearn',
version='0.0.5',
packages=find_packages(exclude=['docs', 'tests', '*.tests']),
author=u'Piotr Szymański',
author_email='[email protected]',
license='BSD',
# long_description=open('README.md').read(),
url='http://scikit-multilearn.github.io/',
description= 'A set of python modules for multi-label classification',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)