forked from dask/dask-gke
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (33 loc) · 1.09 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
#!/usr/bin/env python
from io import open
import re
from setuptools import find_packages, setup
with open('README.md', encoding='utf-8') as f:
readme = f.read()
setup(name="dask-gke",
version="0.0.1",
description="Dask Kubernetes",
url="https://github.com/martindurant/dask-gke",
author="Martin Durant",
author_email="[email protected]",
keywords='kubernetes',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
packages=['dask_gke'],
package_dirs={'dask_gke': ['dask_gke']},
install_requires=['click'],
zip_safe=False,
package_data={'kubernetes': ['*.yaml']},
include_package_data=True,
long_description=readme,
entry_points="""
[console_scripts]
dask-gke=dask_gke.cli.main:start
""")