Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

AMQP support #16

Merged
merged 5 commits into from
Nov 3, 2011
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
AMQP support
  • Loading branch information
nkvoll committed Nov 2, 2011
commit 0f607849cd320d7871e774b71a4d830cb231a11a
2 changes: 2 additions & 0 deletions buildout.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@ eggs = ${buildout:eggs}

[piped-contrib]
develop =
contrib/amqp
contrib/database
contrib/manhole
contrib/status_testing
contrib/validation
contrib/zmq
eggs =
piped.contrib.amqp
piped.contrib.database
piped.contrib.manhole
piped.contrib.status_testing
Expand Down
13 changes: 13 additions & 0 deletions contrib/amqp/piped/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This is a namespace package.
#
# Setuptools would like us to use:
#
# import pkg_resources
# pkg_resources.declare_namespace(__name__)
#
# But trial runs unit tests multiple times using this technique,
# so we use the python built-in method of declaring a namespace
# package instead (http://www.python.org/dev/peps/pep-0382/)

import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
13 changes: 13 additions & 0 deletions contrib/amqp/piped/contrib/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This is a namespace package.
#
# Setuptools would like us to use:
#
# import pkg_resources
# pkg_resources.declare_namespace(__name__)
#
# But trial runs unit tests multiple times using this technique,
# so we use the python built-in method of declaring a namespace
# package instead (http://www.python.org/dev/peps/pep-0382/)

import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
3 changes: 3 additions & 0 deletions contrib/amqp/piped/contrib/amqp/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# See http://www.python.org/dev/peps/pep-0386/ for version numbering, especially NormalizedVersion
from distutils import version
version = version.LooseVersion('0.2.0')
Loading