b83809d54558cff3ebe6864b542fefb1949822f7
[jamaendo] / scripts / jamaendo
1 #!/usr/bin/env python2.5
2
3 # Dependencies:
4
5 # python-simplejson
6 # python-lxml
7 # python-gst0.10
8
9
10 # debugging hack - add . to path
11 import os, sys
12 local_module_dir = os.path.join(os.path.dirname(sys.argv[0]), '..')
13 if os.path.isdir(local_module_dir):
14     sys.path.append(local_module_dir)
15
16 def main():
17     from jamaui.ui import JamaUI
18     player = JamaUI()
19
20     player.run()
21
22 if __name__=="__main__":
23     main()