File: livereload

package info (click to toggle)
python-livereload 2.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 240 kB
  • ctags: 141
  • sloc: python: 605; makefile: 173
file content (10 lines) | stat: -rwxr-xr-x 242 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/python
import sys
import os
sys.path.insert(0, os.environ['PWD'])
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('livereload', 'console_scripts', 'livereload')()
    )