-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
36 lines (34 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
35
36
import setuptools
import versioneer
with open("README.rst", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
requirements = [line.strip() for line in fh]
setuptools.setup(
name="dask-ctl",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Jacob Tomlinson",
author_email="[email protected]",
description="A set of tools to provide a control plane for managing the lifecycle of Dask clusters.",
long_description=long_description,
long_description_content_type="text/x-rst",
include_package_data=True,
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
install_requires=requirements,
extras_require={"tui": ["textual==0.5.0"]},
entry_points="""
[console_scripts]
daskctl=dask_ctl.cli:daskctl
[dask_cluster_discovery]
proxycluster=dask_ctl.proxy:discover
[dask_cli]
cluster=dask_ctl.cli:cluster
""",
)