Files
novelWriter/novelWriter.py
T
2025-10-18 23:14:33 +02:00

14 lines
258 B
Python
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env python3
"""
novelWriter Start Script
==========================
""" # noqa
import os
import sys
os.curdir = os.path.abspath(os.path.dirname(__file__))
if __name__ == "__main__":
import novelwriter
novelwriter.main(sys.argv[1:])