Skip to content

Commit

Permalink
Merge pull request #207 from pipitone/v2.2
Browse files Browse the repository at this point in the history
Merge v2.2
  • Loading branch information
gdevenyi authored Mar 12, 2020
2 parents 0c17922 + a018702 commit 7bdca61
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 23 deletions.
19 changes: 19 additions & 0 deletions CITATION.cff
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
2 changes: 1 addition & 1 deletion qbatch/qbatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def _setupVars():
#SBATCH --nodes={nodes}
#SBATCH {ppj}
#SBATCH {logfile}
#SBATCH --chdir={workdir}
#SBATCH -D {workdir}
#SBATCH --job-name={job_name}
#SBATCH {o_memopts}
#SBATCH {o_queue}
Expand Down
45 changes: 23 additions & 22 deletions setup.py
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",
Expand Down

0 comments on commit 7bdca61

Please sign in to comment.