Renamed module to flask_openid
diff --git a/docs/index.rst b/docs/index.rst
index 7d2d789..52f88e5 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -1,7 +1,7 @@
 Flask-OpenID
 ============
 
-.. module:: flaskext.openid
+.. module:: flask_openid
 
 Flask-OpenID is an extension to `Flask`_ that allows you to add `OpenID`_
 based authentication to your website in a matter of minutes.  It depends
@@ -34,7 +34,7 @@
 To integrate Flask-OpenID into your application you need to create an
 instance of the :class:`OpenID` object first::
 
-    from flaskext.openid import OpenID
+    from flask_openid import OpenID
     oid = OpenID(app, '/path/to/store')
 
 By default it will use the filesystem as store for information needed by
diff --git a/flaskext/openid.py b/flask_openid.py
similarity index 100%
rename from flaskext/openid.py
rename to flask_openid.py
diff --git a/flaskext/__init__.py b/flaskext/__init__.py
deleted file mode 100644
index de40ea7..0000000
--- a/flaskext/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-__import__('pkg_resources').declare_namespace(__name__)
diff --git a/setup.py b/setup.py
index aac5b6b..48bbc95 100644
--- a/setup.py
+++ b/setup.py
@@ -23,8 +23,7 @@
     author_email='armin.ronacher@active-4.com',
     description='OpenID support for Flask',
     long_description=__doc__,
-    packages=['flaskext'],
-    namespace_packages=['flaskext'],
+    py_modules=['flask_openid'],
     zip_safe=False,
     platforms='any',
     install_requires=[