1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 17:56:30 +00:00

Litte cleanup of setup files

Added setup_console script that generate binaries used by AWKCC.
This commit is contained in:
Paweł Jastrzębski
2013-03-06 09:41:54 +01:00
parent 95e7329abf
commit 5e65c5149c
4 changed files with 22 additions and 92 deletions

14
setup_console.py Normal file
View File

@@ -0,0 +1,14 @@
"""
py2app/py2exe build script for KCC No-GUI release.
Usage (Windows):
python setup.py py2exe
"""
from distutils.core import setup
import sys
import py2exe
sys.path.insert(0, 'kcc')
setup(
console=['kcc/comic2ebook.py', 'kcc/kindlestrip.py'],
)