Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion collective/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
#
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
7 changes: 6 additions & 1 deletion collective/transcode/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
#
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
1 change: 1 addition & 0 deletions docs/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
-----------------

- Disable directory listing [Gagaro]
- Specify namespace packages [jean]

0.12 (2012-12-03)
-----------------
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()

version = '0.12'
version = '0.13'

long_description = (
read('README.txt')
Expand Down Expand Up @@ -41,6 +41,7 @@ def read(*rnames):
author_email='we@unweb.me',
url='https://github.com/plumi/collective.transcode.daemon',
license='GPL',
namespace_packages=['collective', 'collective.transcode'],
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
Expand Down