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
112 lines (106 loc) · 3.36 KB

File metadata and controls

112 lines (106 loc) · 3.36 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# -*- coding: utf-8 -*-
# License: BSD 3-Clause
import os
import setuptools
import sys
with open("openml/__version__.py") as fh:
version = fh.readlines()[-1].split()[-1].strip("\"'")
if sys.version_info < (3, 6):
raise ValueError(
"Unsupported Python version {}.{}.{} found. OpenML requires Python 3.6 or higher.".format(
sys.version_info.major, sys.version_info.minor, sys.version_info.micro
)
)
with open(os.path.join("README.md"), encoding="utf-8") as fid:
README = fid.read()
setuptools.setup(
name="openml",
author="Matthias Feurer, Jan van Rijn, Arlind Kadra, Pieter Gijsbers, "
"Neeratyoy Mallik, Sahithya Ravi, Andreas Müller, Joaquin Vanschoren "
"and Frank Hutter",
author_email="feurerm@informatik.uni-freiburg.de",
maintainer="Matthias Feurer",
maintainer_email="feurerm@informatik.uni-freiburg.de",
description="Python API for OpenML",
long_description=README,
long_description_content_type="text/markdown",
license="BSD 3-clause",
url="https://openml.org/",
project_urls={
"Documentation": "https://openml.github.io/openml-python/",
"Source Code": "https://github.com/openml/openml-python",
},
version=version,
# Make sure to remove stale files such as the egg-info before updating this:
# https://stackoverflow.com/a/26547314
packages=setuptools.find_packages(
include=["openml.*", "openml"],
exclude=["*.tests", "*.tests.*", "tests.*", "tests"],
),
package_data={"": ["*.txt", "*.md", "py.typed"]},
python_requires=">=3.6",
install_requires=[
"liac-arff>=2.4.0",
"xmltodict",
"requests",
"scikit-learn>=0.18",
"python-dateutil", # Installed through pandas anyway.
"pandas>=1.0.0",
"scipy>=0.13.3",
"numpy>=1.6.2",
"minio",
"pyarrow",
],
extras_require={
"test": [
"nbconvert",
"jupyter_client",
"matplotlib",
"pytest",
"pytest-xdist",
"pytest-timeout",
"nbformat",
"oslo.concurrency",
"flaky",
"pre-commit",
"pytest-cov",
"pytest-rerunfailures",
"mypy",
],
"examples": [
"matplotlib",
"jupyter",
"notebook",
"nbconvert",
"nbformat",
"jupyter_client",
"ipython",
"ipykernel",
"seaborn",
],
"examples_unix": ["fanova"],
"docs": [
"sphinx>=3",
"sphinx-gallery",
"sphinx_bootstrap_theme",
"numpydoc",
],
},
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",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
entry_points={"console_scripts": ["openml=openml.cli:main"]},
)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.