mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-22 06:16:50 +08:00
10 lines
176 B
Python
Executable File
10 lines
176 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
assert sys.version_info[:2] >= ( 2, 4 )
|
|
|
|
from eggs import get_full_platform, get_noplatform
|
|
print get_noplatform()
|
|
print get_full_platform()
|