Added setup.py

This commit is contained in:
Veronica K. B. Olsen
2019-05-16 14:21:23 +02:00
parent c662cda5b4
commit f6c4ac1da5
2 changed files with 11 additions and 0 deletions
+4
View File
@@ -1,3 +1,7 @@
# Setup
MANIFEST
dist/
# Python Temp
__pycache__
Executable
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env python3
from distutils.core import setup
setup(
name="novelwriter",
version="0.1.2",
py_modules=["nw"],
)