20 lines
392 B
Python
20 lines
392 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
wakatime-cli
|
|
~~~~~~~~~~~~
|
|
|
|
Command-line entry point.
|
|
|
|
:copyright: (c) 2013 Alan Hamlett.
|
|
:license: BSD, see LICENSE for more details.
|
|
"""
|
|
|
|
from __future__ import print_function
|
|
|
|
import os
|
|
import sys
|
|
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
|
import wakatime
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(wakatime.main(sys.argv))
|