mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-01 05:31:04 +08:00
2c4c20436e
EVERYTHING we depend on should eventually be under the galaxy module or packaged in eggs to avoid namespace problems.
8 lines
136 B
Python
Executable File
8 lines
136 B
Python
Executable File
#!/usr/bin/env python2.4
|
|
|
|
import pkg_resources;
|
|
pkg_resources.require( "PasteScript" )
|
|
|
|
from paste.script import command
|
|
command.run()
|