forked from scikit-multilearn/scikit-multilearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 1.22 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
32
33
# -*- coding: utf-8 -*-
from distutils.core import setup
#import sphinx_pypi_upload
setup(
name='scikit-multilearn',
version='0.0.1',
packages=['skmultilearn','meka'],
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',
package_data = {'skmultilearn': ['data/*.dump.bz2']},
include_package_data = True,
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',
],
)