Commit f4e591f7 authored by Hanno Schlichting's avatar Hanno Schlichting

Made both `Shared` and `Shared.DC` namespace packages.

parent d781e649
...@@ -22,6 +22,8 @@ Bugs Fixed ...@@ -22,6 +22,8 @@ Bugs Fixed
Restructuring Restructuring
+++++++++++++ +++++++++++++
- Made both `Shared` and `Shared.DC` namespace packages.
- Removed fallback code for old Python versions from - Removed fallback code for old Python versions from
`ZServer.FTPServer.zope_ftp_channel.push`. `ZServer.FTPServer.zope_ftp_channel.push`.
......
...@@ -36,7 +36,7 @@ setup(name='Zope2', ...@@ -36,7 +36,7 @@ setup(name='Zope2',
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
], ],
packages=find_packages('src'), packages=find_packages('src'),
namespace_packages=['Products'], namespace_packages=['Products', 'Shared', 'Shared.DC'],
package_dir={'': 'src'}, package_dir={'': 'src'},
install_requires=[ install_requires=[
'AccessControl', 'AccessControl',
......
...@@ -10,5 +10,4 @@ ...@@ -10,5 +10,4 @@
# FOR A PARTICULAR PURPOSE # FOR A PARTICULAR PURPOSE
# #
############################################################################## ##############################################################################
__doc__='''$Id$''' __import__('pkg_resources').declare_namespace(__name__)
__version__='$Revision: 1.9 $'[11:-2]
...@@ -10,5 +10,4 @@ ...@@ -10,5 +10,4 @@
# FOR A PARTICULAR PURPOSE # FOR A PARTICULAR PURPOSE
# #
############################################################################## ##############################################################################
__doc__='''$Id$''' __import__('pkg_resources').declare_namespace(__name__)
__version__='$Revision: 1.7 $'[11:-2]
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment