forked from openml/sklearn-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (42 loc) · 1.73 KB
/
setup.py
File metadata and controls
49 lines (42 loc) · 1.73 KB
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
45
46
47
48
49
# -*- coding: utf-8 -*-
import setuptools
import sys
with open("sklearnbot/__version__.py") as fh:
version = fh.readlines()[-1].split()[-1].strip("\"'")
dependency_links = []
try:
import numpy
except ImportError:
print('numpy is required during installation')
sys.exit(1)
try:
import scipy
except ImportError:
print('scipy is required during installation')
sys.exit(1)
setuptools.setup(name="sklearnbot",
author="Jan N. van Rijn",
description="Runs scikit-learn bot on classifiers and uploads results to OpenML.",
license="BSD 3-clause",
url="https://www.openml.org/",
version=version,
packages=setuptools.find_packages(),
package_data={'': ['*.txt', '*.md']},
install_requires=[
'ConfigSpace',
'openml',
'openmlcontrib',
'pandas>=0.24.0',
],
test_suite="pytest",
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'])