1diff --git a/setup.py b/setup.py
2index 9ec6f2e..607b680 100644
3--- a/setup.py
4+++ b/setup.py
5@@ -29,7 +29,6 @@ setup(
6 license='ZPL 2.1',
7 packages=find_packages('src'),
8 package_dir= {'':'src'},
9- namespace_packages=['hurry'],
10 include_package_data=True,
11 zip_safe=False,
12 install_requires=[
13diff --git a/src/hurry/__init__.py b/src/hurry/__init__.py
14index 2e2033b..e69de29 100644
15--- a/src/hurry/__init__.py
16+++ b/src/hurry/__init__.py
17@@ -1,7 +0,0 @@
18-# this is a namespace package
19-try:
20- import pkg_resources
21- pkg_resources.declare_namespace(__name__)
22-except ImportError:
23- import pkgutil
24- __path__ = pkgutil.extend_path(__path__, __name__)