-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·29 lines (26 loc) · 921 Bytes
/
setup.py
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
#!/usr/bin/env python
from os.path import exists
from setuptools import setup
import versioneer
setup(
name='dask-funk',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=('daskfunk',),
setup_requires=['pytest-runner'],
install_requires=('dask>=0.8.0', 'toolz>=0.7.4'),
tests_require=('pytest>=3.0.0', 'pytest-pythonpath', 'pytest-flake8', 'cytoolz>=0.7.4',
'pytest-isort', 'pep8-naming'),
description="Composable keyword function graphs",
long_description=(open('README.rst').read() if exists('README.rst')
else ''),
author="Ben Mabey",
author_email="ben@benmabey.com",
url="http://github.com/bmabey/dask-funk",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.4",
],
)