Moved the main pynche.py file to Main.py. Added minimal driver

scripts pynche.py and pynche.pyw for Unix and Windows startup
respectively.  Document the .pyw file in the README.
This commit is contained in:
Barry Warsaw 1998-10-07 03:36:58 +00:00
parent c958043233
commit 0926deacd5
5 changed files with 16 additions and 5 deletions

View File

@ -1,5 +1,3 @@
#! /usr/bin/env python
"""Pynche: The PYthon Natural Color and Hue Editor.
Pynche is based largely on a similar color editor I wrote years ago for the

View File

@ -101,7 +101,7 @@ class PyncheWidget:
return self.__root
def __popup_about(self, event=None):
from pynche import __version__
from Main import __version__
tkMessageBox.showinfo('About Pynche ' + __version__,
'''\
Pynche %s

View File

@ -25,8 +25,7 @@ this reason, but you can use a different file with the -d option. The
file xlicense.txt contains the license only for rgb.txt.
Pynche is pronounced `Pinch-ee'. Start it by running the pynche.py
driver. On Windows, you probably want to rename pynche.py to
pynche.pyw so that it doesn't bring up a console window.
driver. On Windows, run pynche.pyw to inhibit the console window.
The top part of the main Pynche window contains the "variation
strips". Each strip contains a number of "color chips". The strips

7
Tools/pynche/pynche Executable file
View File

@ -0,0 +1,7 @@
#! /usr/bin/env python
"""Run this file under Unix, or when debugging under Windows.
Run the file pynche.pyw under Windows to inhibit the console window.
"""
import Main
Main.main()

7
Tools/pynche/pynche.pyw Executable file
View File

@ -0,0 +1,7 @@
#! /usr/bin/env python
"""Run this file under Windows to inhibit the console window.
Run the file pynche.py under Unix or when debugging under Windows.
"""
import Main
Main.main()