File: __main__.py

package info (click to toggle)
python-mistletoe 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 828 kB
  • sloc: python: 5,663; sh: 66; makefile: 40
file content (17 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
Make mistletoe runnable as a script with default settings.
"""

import sys
from mistletoe import cli


def main():
    """
    Entry point.
    """
    cli.main(sys.argv[1:])


if __name__ == "__main__":
    main()