File: livereload

package info (click to toggle)
python-livereload 2.6.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 312 kB
  • sloc: javascript: 1,041; python: 846; makefile: 169
file content (10 lines) | stat: -rwxr-xr-x 243 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/python3
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')()
    )