forked from rapidsai/dask-cudf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.14 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
import os
from codecs import open
from setuptools import find_packages, setup
# 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()
version = os.environ.get('GIT_DESCRIBE_TAG', '0.0.0.dev0').lstrip('v')
setup(
name="dask-cudf",
version=version,
description="Utilities for Dask and cuDF interactions",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/rapidsai/dask-cudf",
author="NVIDIA Corporation",
license="Apache 2.0",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache 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.dask_cuda_worker:go
''',
)