File: phatch

package info (click to toggle)
phatch 0.1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 9,728 kB
  • ctags: 2,197
  • sloc: python: 17,901; xml: 9; makefile: 8
file content (14 lines) | stat: -rwxr-xr-x 283 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python

"""Launch script from the bin folder."""

import os, sys
import phatch

sys.path.insert(0,os.path.dirname(phatch.__file__))

from core import config
config_paths = config.init_config_paths()

from phatch.app import main
main(config_paths, app_file = __file__)