forked from rapidsai/dask-cuda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.39 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
import os
from codecs import open
from setuptools import find_packages, setup
import versioneer
# Get the long description from the README file
with open(os.path.join(os.path.dirname(__file__), "README.md")) as f:
long_description = f.read()
if "GIT_DESCRIBE_TAG" in os.environ:
version = os.environ["GIT_DESCRIBE_TAG"] + os.environ.get("VERSION_SUFFIX", "")
cmdclass = {}
else:
version = versioneer.get_version()
cmdclass = versioneer.get_cmdclass()
setup(
name="dask-cuda",
version=version,
cmdclass=cmdclass,
description="Utilities for Dask and CUDA interactions",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rapidsai/dask-cuda",
author="RAPIDS development team",
author_email="mrocklin@nvidia.com",
license="Apache 2.0",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
packages=find_packages(exclude=["docs", "tests", "tests.*", "docs.*"]),
install_requires=open("requirements.txt").read().strip().split("\n"),
entry_points="""
[console_scripts]
dask-cuda-worker=dask_cuda.cli.dask_cuda_worker:go
""",
)