forked from dask/dask-jobqueue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Joseph Hamman
committed
Apr 12, 2018
1 parent
2e406ae
commit d5f3db3
Showing
8 changed files
with
90 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,25 @@ | ||
#!/usr/bin/env python | ||
|
||
from os.path import exists | ||
|
||
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='0.1.0', | ||
description='Deploy Dask on job queuing systems like PBS and SLURM', | ||
description='Deploy Dask on job queuing systems like PBS or SLURM', | ||
url='https://github.com/dask/dask-jobqueue', | ||
license='BSD 3-Clause', | ||
packages=['dask_jobqueue'], | ||
install_requires=open('requirements.txt').read().strip().split('\n'), | ||
long_description=(open('README.rst').read() if exists('README.rst') else ''), | ||
install_requires=install_requires, | ||
tests_require=['pytest >= 2.7.1'], | ||
long_description=long_description, | ||
zip_safe=False) |