[Python-checkins] CVS: distutils/examples/sample4 script1,NONE,1.1 script2,NONE,1.1 script3,NONE,1.1 script4,NONE,1.1 setup.py,NONE,1.1

Greg Ward python-dev@python.org
Mon, 2 Oct 2000 20:36:33 -0700


Update of /cvsroot/python/distutils/examples/sample4
In directory slayer.i.sourceforge.net:/tmp/cvs-serv24745

Added Files:
	script1 script2 script3 script4 setup.py 
Log Message:
Sample Distribution #4: demonstrate building/installing scripts.

--- NEW FILE ---
#!python
print "hello!"

--- NEW FILE ---
#!/usr/bin/env python
print "hello again"

--- NEW FILE ---
#! /usr/local/bin/python -u
import sys
sys.stdout.write("un")
sys.stderr.write("buf")
sys.stdout.write("fer")
sys.stderr.write("ed")
sys.stdout.write("\n")

--- NEW FILE ---
#!/bin/sh
echo "FOO"

--- NEW FILE ---
#!/usr/bin/env python
#
# sample4 -- try out the "build_script" and "install_script" commands
#

from distutils.core import setup

setup (name = "sample4", version = "0",
       description = "Distutils Sample #4",
       scripts = ['script1', 'script2', 'script3', 'script4'],
      )