Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updating with 'develop'
  • Loading branch information
Neeratyoy committed Jul 6, 2020
commit 870bef17652f9cc1f601d23456b5fa8e51aa3487
157 changes: 80 additions & 77 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,80 +19,83 @@
with open(os.path.join("README.md")) 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="http://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']},
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',
],
extras_require={
'test': [
'nbconvert',
'jupyter_client',
'matplotlib',
'pytest',
'pytest-xdist',
'pytest-timeout',
'nbformat',
'oslo.concurrency',
'flaky',
'pyarrow'
],
'examples': [
'matplotlib',
'jupyter',
'notebook',
'nbconvert',
'nbformat',
'jupyter_client',
'ipython',
'ipykernel',
'seaborn'
],
'examples_unix': [
'fanova',
]
},
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'])
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="http://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"]},
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",
],
extras_require={
"test": [
"nbconvert",
"jupyter_client",
"matplotlib",
"pytest",
"pytest-xdist",
"pytest-timeout",
"nbformat",
"oslo.concurrency",
"flaky",
"pyarrow",
"pre-commit",
"pytest-cov",
],
"examples": [
"matplotlib",
"jupyter",
"notebook",
"nbconvert",
"nbformat",
"jupyter_client",
"ipython",
"ipykernel",
"seaborn",
],
"examples_unix": ["fanova",],
},
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",
],
)
You are viewing a condensed version of this merge commit. You can view the full changes here.