annotate bitten/__init__.py @ 890:df1d63c0dd22 0.6.x

0.6dev: Merged [968] from trunk.
author osimons
date Fri, 21 Jan 2011 08:14:54 +0000
parents 8df9bc903edb
children
rev   line source
379
0df178e07fdb Use UTF-8 as encoding of source files.
cmlenz
parents: 275
diff changeset
1 # -*- coding: utf-8 -*-
5
738a0ae251f6 Added GPL boilerplate.
cmlenz
parents: 0
diff changeset
2 #
833
f4d07544722b 0.6dev: Merged [910] from trunk.
osimons
parents: 786
diff changeset
3 # Copyright (C) 2007-2010 Edgewall Software
408
933105ab516b Update file headers and other stuff pointing to the old home.
cmlenz
parents: 379
diff changeset
4 # Copyright (C) 2005-2007 Christopher Lenz <cmlenz@gmx.de>
163
634be6cbb808 Flip the switch: Bitten is now BSD-licensed.
cmlenz
parents: 135
diff changeset
5 # All rights reserved.
5
738a0ae251f6 Added GPL boilerplate.
cmlenz
parents: 0
diff changeset
6 #
163
634be6cbb808 Flip the switch: Bitten is now BSD-licensed.
cmlenz
parents: 135
diff changeset
7 # This software is licensed as described in the file COPYING, which
634be6cbb808 Flip the switch: Bitten is now BSD-licensed.
cmlenz
parents: 135
diff changeset
8 # you should have received as part of this distribution. The terms
408
933105ab516b Update file headers and other stuff pointing to the old home.
cmlenz
parents: 379
diff changeset
9 # are also available at http://bitten.edgewall.org/wiki/License.
5
738a0ae251f6 Added GPL boilerplate.
cmlenz
parents: 0
diff changeset
10
411
a169d2e96463 Use reStructuredText as the API documentation syntax.
cmlenz
parents: 408
diff changeset
11 __docformat__ = 'restructuredtext en'
425
818c81fad00c The slave shouldn't depend on Trac, so remove the related import. Also, automatically fetch the version number from the setup script.
cmlenz
parents: 411
diff changeset
12 try:
818c81fad00c The slave shouldn't depend on Trac, so remove the related import. Also, automatically fetch the version number from the setup script.
cmlenz
parents: 411
diff changeset
13 __version__ = __import__('pkg_resources').get_distribution('Bitten').version
598
5f3e66e5b451 0.6dev: Running `python setup-slave.py install` now works for installing only the parts of Bitten needed by slave to run builds. Closes #383.
osimons
parents: 425
diff changeset
14 except:
5f3e66e5b451 0.6dev: Running `python setup-slave.py install` now works for installing only the parts of Bitten needed by slave to run builds. Closes #383.
osimons
parents: 425
diff changeset
15 try:
5f3e66e5b451 0.6dev: Running `python setup-slave.py install` now works for installing only the parts of Bitten needed by slave to run builds. Closes #383.
osimons
parents: 425
diff changeset
16 __version__ = __import__('pkg_resources').get_distribution(
684
a9157ac17ff9 0.6dev: Merging [758:759] from trunk.
osimons
parents: 654
diff changeset
17 'BittenSlave').version
598
5f3e66e5b451 0.6dev: Running `python setup-slave.py install` now works for installing only the parts of Bitten needed by slave to run builds. Closes #383.
osimons
parents: 425
diff changeset
18 except:
5f3e66e5b451 0.6dev: Running `python setup-slave.py install` now works for installing only the parts of Bitten needed by slave to run builds. Closes #383.
osimons
parents: 425
diff changeset
19 pass
654
cc1fefd5d814 0.6dev: Moved a constant declaration so that master should still work with Python 2.4. Updated docs with regards to Python requirements + added a changelog message from cmlenz.
osimons
parents: 598
diff changeset
20
cc1fefd5d814 0.6dev: Moved a constant declaration so that master should still work with Python 2.4. Updated docs with regards to Python requirements + added a changelog message from cmlenz.
osimons
parents: 598
diff changeset
21 # The master-slave protocol/configuration version
836
8df9bc903edb 0.6dev: Merged [912:913] from trunk.
osimons
parents: 833
diff changeset
22 PROTOCOL_VERSION = 5
Copyright (C) 2012-2017 Edgewall Software