-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (36 loc) · 1.38 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
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
import os
import codecs
setup_path = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(setup_path, 'README.rst'), encoding='utf-8-sig') as f:
README = f.read()
setup(name='DESlib',
version='0.4.dev',
url='https://github.com/Menelau/DESlib',
maintainer='Rafael M. O. Cruz, L. G. Hafemann',
maintainer_email='[email protected]',
description='Implementation of Dynamic Ensemble Selection methods',
long_description=README,
author='Rafael M. O. Cruz',
author_email='[email protected]',
license='BSD 3-clause "New" or "Revised License"',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
install_requires=[
'scikit-learn>=0.19.0',
'numpy>=1.10.4',
'scipy>=1.2.0',
],
python_requires='>=3',
packages=find_packages())