-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #207 from pipitone/v2.2
Merge v2.2
- Loading branch information
Showing
3 changed files
with
43 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# YAML 1.2 | ||
--- | ||
cff-version: "1.1.0" | ||
abstract: | | ||
"Execute shell command lines in parallel on Slurm, S(un|on of) Grid Engine (SGE) and PBS/Torque clusters" | ||
message: "If you use this software, please cite it as below." | ||
authors: | ||
- | ||
family-names: Devenyi | ||
given-names: "Gabriel Allan" | ||
orcid: "https://orcid.org/0000-0002-7766-1187" | ||
- | ||
family-names: Pipitone | ||
given-names: Jon | ||
orcid: "https://orcid.org/0000-0001-6313-5701" | ||
title: qbatch | ||
repository-code: "https://github.com/pipitone/qbatch" | ||
version: "2.2" | ||
date-released: 2020-03-12 |
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,42 +1,43 @@ | ||
#!/usr/bin/env python | ||
|
||
from setuptools import setup | ||
from io import open | ||
|
||
# pypi doesn't like markdown | ||
# https://github.com/pypa/packaging-problems/issues/46 | ||
try: | ||
import pypandoc | ||
description = pypandoc.convert('README.md', 'rst') | ||
except (IOError, ImportError): | ||
description = '' | ||
# read the contents of your README file | ||
from os import path | ||
this_directory = path.abspath(path.dirname(__file__)) | ||
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='qbatch', | ||
version='2.1.5', | ||
description='Execute shell command lines in parallel on Slurm, S(sun|on of) Grid Engine (SGE) and PBS/Torque clusters', | ||
version='2.2', | ||
description='Execute shell command lines in parallel on Slurm, ' | ||
'S(un|on of) Grid Engine (SGE) and PBS/Torque clusters', | ||
author="Jon Pipitone, Gabriel A. Devenyi", | ||
author_email="[email protected], [email protected]", | ||
license='Unlicense', | ||
url="https://github.com/pipitone/qbatch", | ||
long_description=description, | ||
entry_points = { | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
entry_points={ | ||
"console_scripts": [ | ||
"qbatch=qbatch:qbatchParser", | ||
] | ||
}, | ||
packages=["qbatch"], | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Console', | ||
'Intended Audience :: Science/Research', | ||
'License :: Public Domain', | ||
'Natural Language :: English', | ||
'Operating System :: POSIX :: Linux', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: System :: Clustering', | ||
'Topic :: System :: Distributed Computing', | ||
'Topic :: Utilities', | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Console', | ||
'Intended Audience :: Science/Research', | ||
'License :: Public Domain', | ||
'Natural Language :: English', | ||
'Operating System :: POSIX :: Linux', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: System :: Clustering', | ||
'Topic :: System :: Distributed Computing', | ||
'Topic :: Utilities', | ||
], | ||
install_requires=[ | ||
"six", | ||
|