[Python-checkins] distutils/examples template_setup.py,1.2,1.3

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Fri Oct 24 14:49:00 EDT 2003


Update of /cvsroot/python/distutils/examples
In directory sc8-pr-cvs1:/tmp/cvs-serv5011

Modified Files:
	template_setup.py 
Log Message:
Use current location for docs; modernize template a bit

Index: template_setup.py
===================================================================
RCS file: /cvsroot/python/distutils/examples/template_setup.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** template_setup.py	31 May 2000 02:29:52 -0000	1.2
--- template_setup.py	24 Oct 2003 18:48:58 -0000	1.3
***************
*** 1,7 ****
  #!/usr/bin/env python
  
! # Template for creating your own setup.py.  See the USAGE file in
! # the Distutils source distribution for descriptions of all the
! # options shown below.  Brief instructions on what to do:
  #   - change XXX to the name of your module distribution; note that
  #     this will be used to generate a filename, so keep it short and
--- 1,9 ----
  #!/usr/bin/env python
  
! # Template for creating your own setup.py.  See the "Distributing
! # Python Modules" manual at http://www.python.org/doc/current/dist/
! # for descriptions of all the options shown below.
! #
! # Brief instructions on what to do:
  #   - change XXX to the name of your module distribution; note that
  #     this will be used to generate a filename, so keep it short and
***************
*** 28,36 ****
         name = "XXX",
         version = "",
!        description = "",
         author = "",
         author_email = "",
         url = "",
! 
         # Description of the modules and packages in the distribution
         packages = [''],
--- 30,46 ----
         name = "XXX",
         version = "",
!        description = "XXX Single-line explanation of package",
!        long_description = """XXX multi-paragraph explanation of package""",
         author = "",
         author_email = "",
         url = "",
!        license = "XXX",
!        classifiers = [
!            # Include appropriate classifiers from the output of
!            # "setup.py register --list-classifiers"
!            "XXX :: XXX",
!            "XXX :: XXX",
!        ],
!        
         # Description of the modules and packages in the distribution
         packages = [''],





More information about the Python-checkins mailing list