forked from samehraban/scikit-multilearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (39 loc) · 1.45 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
34
35
36
37
38
39
40
41
42
43
44
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# import sphinx_pypi_upload
import sys
if sys.version_info[0] < 3:
import codecs
with codecs.open('README.md', 'r', 'utf-8') as f:
readme = f.read()
else:
import io
with io.open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
setup(
name='scikit-multilearn',
version='0.2.0',
packages=find_packages(exclude=['docs', 'tests', '*.tests']),
author=u'Piotr Szymański',
author_email=u'niedakh@gmail.com',
license=u'BSD',
long_description=readme,
url=u'http://scikit.ml/',
description=u'Scikit-multilearn is a BSD-licensed library for multi-label classification that is built on top of the well-known scikit-learn ecosystem.',
classifiers=[
u'Development Status :: 5 - Production/Stable',
u'Environment :: Console',
u'Environment :: Web Environment',
u'Intended Audience :: Developers',
u'Intended Audience :: Education',
u'Intended Audience :: Science/Research',
u'License :: OSI Approved :: BSD License',
u'Operating System :: MacOS :: MacOS X',
u'Operating System :: Microsoft :: Windows',
u'Operating System :: POSIX',
u'Programming Language :: Python',
u'Topic :: Scientific/Engineering',
u'Topic :: Scientific/Engineering :: Information Analysis',
u'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)