This repository was archived by the owner on Jun 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
58 lines (49 loc) · 1.4 KB
/
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
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
import pathlib
from setuptools import find_packages, setup
import versioneer
LONG_DESCRIPTION = """
Ibis_dask is a dask plugin for Ibis.
Ibis is a productivity-centric Python big data framework.
See http://ibis-project.org for more information.
Dask is a flexible parallel computing library for analytics.
See https://dask.org/ for more information.
"""
install_requires = [
line.strip()
for line in pathlib.Path(__file__)
.parent.joinpath('requirements.txt')
.read_text()
.splitlines()
]
dev_requires = [
"black"
"click"
"pydocstyle==4.0.1"
"flake8"
"isort"
"mypy"
"pre-commit"
"pytest>=4.5"
]
setup(
name='ibis_dask',
url='https://github.com/ibis-project/ibis-dask',
packages=find_packages(),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=install_requires,
python_requires='>=3.7',
entry_points={'ibis.backends': 'dask=ibis_dask'},
extras_require={'develop': dev_requires},
description="Dask backend for Ibis",
long_description=LONG_DESCRIPTION,
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
],
license='Apache License, Version 2.0',
)