File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -181,6 +181,8 @@ configured.
181
181
description = 'Enhancements to virtualenv',
182
182
183
183
# ... details omitted ...
184
+
185
+ namespace_packages = [ 'virtualenvwrapper' ],
184
186
185
187
entry_points = {
186
188
'virtualenvwrapper.initialize': [
@@ -193,7 +195,7 @@ configured.
193
195
# ... details omitted ...
194
196
},
195
197
)
196
-
198
+
197
199
The ``entry_points `` argument to ``setup() `` is a dictionary mapping
198
200
the entry point *group names * to lists of entry point specifiers. A
199
201
different group name is defined by virtualenvwrapper for each
@@ -204,6 +206,11 @@ package.module:function``. By convention, the *name* of each entry
204
206
point is the plugin name, but that is not required (the names are not
205
207
used).
206
208
209
+ .. seealso ::
210
+
211
+ * `namespace packages <http://packages.python.org/distribute/setuptools.html#namespace-packages >`__
212
+ * `Extensible Applications and Frameworks <http://packages.python.org/distribute/setuptools.html#extensible-applications-and-frameworks >`__
213
+
207
214
The Hook Loader
208
215
---------------
209
216
Original file line number Diff line number Diff line change @@ -136,9 +136,11 @@ def find_package_data(
136
136
],
137
137
138
138
provides = ['virtualenvwrapper' ,
139
+ 'virtualenvwrapper.user_scripts' ,
139
140
],
140
141
requires = ['virtualenv' ],
141
142
143
+ namespace_packages = [ 'virtualenvwrapper' ],
142
144
packages = find_packages (),
143
145
include_package_data = True ,
144
146
# Scan the input for package information
You can’t perform that action at this time.
0 commit comments