Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
72 lines (65 loc) · 2.75 KB

File metadata and controls

72 lines (65 loc) · 2.75 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# -*- coding: utf-8 -*-
import setuptools
import sys
with open("openml/__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="openml",
author="Matthias Feurer, Andreas Müller, Farzan Majdani, "
"Joaquin Vanschoren, Jan van Rijn and Pieter Gijsbers",
author_email="feurerm@informatik.uni-freiburg.de",
maintainer="Matthias Feurer",
maintainer_email="feurerm@informatik.uni-freiburg.de",
description="Python API for OpenML",
license="BSD 3-clause",
url="http://openml.org/",
version=version,
packages=setuptools.find_packages(),
package_data={'': ['*.txt', '*.md']},
install_requires=[
'numpy>=1.6.2',
'scipy>=0.13.3',
'mock',
'liac-arff>=2.2.2',
'xmltodict',
'pytest',
'requests',
'scikit-learn>=0.18',
'nbformat',
'python-dateutil',
'oslo.concurrency',
'pandas>=0.19.2',
],
extras_require={
'test': [
'nbconvert',
'jupyter_client',
'matplotlib'
]
},
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 :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'])
Morty Proxy This is a proxified and sanitized view of the page, visit original site.