#!python
"""NovaCode CLI — cross-platform entry point.

Used by pip install's ``scripts`` mechanism. On Unix this is installed as
``novacode`` in the bin directory. On Windows pip also creates a companion
``novacode.exe`` wrapper from this script.
"""
import sys
from novacode.__main__ import cli_entry

sys.exit(cli_entry())
