Add source headers to setup and start files, and keep windows start file

This commit is contained in:
Veronica K. B. Olsen
2021-02-03 15:21:01 +01:00
parent 022945b0d1
commit b62fafe520
4 changed files with 41 additions and 6 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
novelWriter Windows Start Script
==================================
The main start script for Windows
"""
import os
os.curdir = os.path.abspath(os.path.dirname(__file__))
if __name__ == "__main__":
import nw
nw.main()