Skip to content

Commit cc3dcbd

Browse files
committed
Merge branch 'development'
2 parents c866690 + 544c7c6 commit cc3dcbd

19 files changed

+1277
-128
lines changed

.idea/vagrant.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.rst

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
===================
2-
CondorPy v0.0.0
3-
===================
1+
========
2+
CondorPy
3+
========
44
:condorpy: Python interface for high throughput computing with HTCondor
5-
:Version: 0.0.0
5+
:Version: 0.1.0
66
:Author: Scott Christensen
7-
:Team: CI-Water
8-
:Homepage: http://ci-water.org
7+
:Team: CI-WATER
8+
:Homepage: http://ci-water.github.io/condorpy/
99
:License: BSD 2-Clause
1010

1111
Description:
1212
============
1313
Condorpy is a wrapper for the command line interface (cli) of HTCondor and enables creating submitting and monitoring HTCondor jobs from Python. HTCondor must be installed to use condorpy.
1414

1515
Installing:
16-
============
16+
===========
1717
::
1818

1919
$ pip install condorpy
2020

2121

2222
Code Example:
23-
============
23+
=============
2424
::
2525

2626
>>> from condorpy import Job, Templates

condorpy/exceptions.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
3+
class CondorpyBaseException(Exception):
4+
pass
5+
6+
class NoExecutable(CondorpyBaseException):
7+
pass
8+
9+
class CircularDependency(CondorpyBaseException):
10+
pass
11+
12+
class HTCondorError(CondorpyBaseException):
13+
pass
14+
15+
class RemoteError(CondorpyBaseException):
16+
pass

0 commit comments

Comments
 (0)