mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 22:06:53 +08:00
13 lines
256 B
Python
Executable File
13 lines
256 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os, sys
|
|
|
|
assert sys.version_info[:2] >= ( 2, 4 )
|
|
|
|
lib = os.path.abspath( os.path.join( os.path.dirname( __file__ ), "..", "lib" ) )
|
|
sys.path.append( lib )
|
|
|
|
import galaxy
|
|
import pkg_resources
|
|
print pkg_resources.get_platform()
|