summaryrefslogtreecommitdiffstats
path: root/pypi/oslo
diff options
context:
space:
mode:
authorDoug Hellmann <doug.hellmann@dreamhost.com>2012-10-26 11:22:24 -0400
committerDoug Hellmann <doug.hellmann@dreamhost.com>2012-10-30 15:16:30 -0400
commit256a467d3ce5b626f50e24a7d9a053b133390586 (patch)
tree39e59d8a8ee06437a8a2c9c4de022a69ea1c34b4 /pypi/oslo
parentaca1805d911caefe14a73edb6ced281cf54e7ad2 (diff)
downloadoslo-256a467d3ce5b626f50e24a7d9a053b133390586.tar.gz
oslo-256a467d3ce5b626f50e24a7d9a053b133390586.tar.xz
oslo-256a467d3ce5b626f50e24a7d9a053b133390586.zip
Add setup.py for registering namespace package
Create a dummy package and setup.py file solely to be used to register the name "oslo" on PyPI. Change-Id: Ica9dd1cf05fda36c317223ead22a94f337f3ae21 Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
Diffstat (limited to 'pypi/oslo')
-rw-r--r--pypi/oslo/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pypi/oslo/__init__.py b/pypi/oslo/__init__.py
new file mode 100644
index 0000000..9d3b5b4
--- /dev/null
+++ b/pypi/oslo/__init__.py
@@ -0,0 +1,3 @@
+"""Declare namespace package"""
+
+__import__('pkg_resources').declare_namespace(__name__)