about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hurry-filesize/use-pep-420-implicit-namespace-package.patch
blob: 788c603ac5303563c19e2e1856600a360d3b02c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
diff --git a/setup.py b/setup.py
index 9ec6f2e..607b680 100644
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,6 @@ setup(
     license='ZPL 2.1',
     packages=find_packages('src'),
     package_dir= {'':'src'},
-    namespace_packages=['hurry'],
     include_package_data=True,
     zip_safe=False,
     install_requires=[
diff --git a/src/hurry/__init__.py b/src/hurry/__init__.py
index 2e2033b..e69de29 100644
--- a/src/hurry/__init__.py
+++ b/src/hurry/__init__.py
@@ -1,7 +0,0 @@
-# this is a namespace package
-try:
-    import pkg_resources
-    pkg_resources.declare_namespace(__name__)
-except ImportError:
-    import pkgutil
-    __path__ = pkgutil.extend_path(__path__, __name__)