Changeset 804
- Timestamp:
- 09/22/07 16:55:55 (1 year ago)
- Files:
-
- pyrun/trunk/pyrun.py (modified) (1 diff)
- pyrun/trunk/pyrunscripts.py (modified) (5 diffs)
- pyrun/trunk/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pyrun/trunk/pyrun.py
r798 r804 352 352 else: 353 353 nextopt = argv[ia][1:] 354 if nextopt not in default_opts:355 nextopt = short_opts[nextopt]356 354 357 355 # If its one of the callers options and the callers option values does pyrun/trunk/pyrunscripts.py
r803 r804 176 176 if isinstance(req, types.StringTypes) else req 177 177 for req in reqs] 178 179 178 # Collect all the scripts for all the resolved distributions. If we get 180 179 # script name colisions, either as a result of or inspite of scriptrenames … … 186 185 for dist in ws.resolve(reqs, env=env): 187 186 dist.activate() 187 print dist.location 188 188 for name, ep in dist.get_entry_map('console_scripts').iteritems(): 189 189 sname = scriptnames.get(name, name) … … 211 211 locations.append(dist.location) 212 212 213 214 213 script_parameters = [] 215 214 for sname, (name, ep, arguments) in entrypoints.iteritems(): … … 242 241 locations, parameters = resolve_egg_scripts( 243 242 path, reqs, projects, scripts) 244 245 243 generated = [] 246 244 for sname, name, module_name, attrs, arguments in parameters: … … 275 273 276 274 """ 277 278 275 ensure_pkg_resources() 279 276 pyrun/trunk/setup.py
r775 r804 75 75 'console_scripts': [ 76 76 'pyrun = pyrun:runex', 77 'pyrun-m = pyrun:run' 77 'pyrunscripts = pyrunscripts:run', 78 'eggtool = eggtool:run' 78 79 ] 79 80 },