forked from dask/dask-jobqueue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (27 loc) · 849 Bytes
/
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
#!/usr/bin/env python
from os.path import exists
import versioneer
from setuptools import setup
with open("requirements.txt") as f:
install_requires = f.read().strip().split("\n")
if exists("README.rst"):
with open("README.rst") as f:
long_description = f.read()
else:
long_description = ""
setup(
name="dask-jobqueue",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Easy deployment of Dask Distributed on job queuing systems "
"such as PBS, Slurm, or SGE.*",
url="https://github.com/dask/dask-jobqueue",
python_requires=">=3.5",
license="BSD 3-Clause",
packages=["dask_jobqueue"],
include_package_data=True,
install_requires=install_requires,
tests_require=["pytest >= 2.7.1"],
long_description=long_description,
zip_safe=False,
)