Skip to content

Commit

Permalink
setup: fix ckanext namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Aug 5, 2024
1 parent 66d07e6 commit 065410c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
0.16.2
- setup: fix ckanext namespace
0.16.1
- build: fix CI pipeline
0.16.0
Expand Down
1 change: 1 addition & 0 deletions ckanext/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from setuptools import setup, find_packages

setup(
# for compatibility with ckanext namespace
packages=find_packages(),
namespace_packages=['ckanext'],
)

0 comments on commit 065410c

Please sign in to comment.