Skip to content
This repository has been archived by the owner on Jun 11, 2022. It is now read-only.

Commit

Permalink
Config files
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed May 17, 2018
1 parent 2403401 commit 1a91df0
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
3 changes: 3 additions & 0 deletions readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python:
version: 3
setup_py_install: true
33 changes: 33 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
from setuptools import setup, find_packages

install_requires = [
'sphinx',
'sphinx_gallery',
]

setup(
name='dask-ml-benchmarks',
description='A library for distributed and parallel machine learning',
url='https://github.com/dask/dask-ml-benchmarks',

author='Tom Augspurger',
author_email='taugspurger@anaconda.com',
license='BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Database',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'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',
],
packages=find_packages(exclude=['docs', 'tests', 'tests.*', 'docs.*']),
use_scm_version=True,
setup_requires=['setuptools_scm'],
install_requires=install_requires,
)

0 comments on commit 1a91df0

Please sign in to comment.