[Python-checkins] python/dist/src/Lib/distutils dist.py,1.66,1.67

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Fri Jun 11 17:50:35 EDT 2004


Update of /cvsroot/python/python/dist/src/Lib/distutils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27213/Lib/distutils

Modified Files:
	dist.py 
Log Message:
Add support for package data.

This is basically the support for package data from Phillip Eby's
setuptools package.  I've changed it only to fit it into the core
implementation rather than to live in subclasses, and added
documentation.


Index: dist.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/dist.py,v
retrieving revision 1.66
retrieving revision 1.67
diff -C2 -d -r1.66 -r1.67
*** dist.py	22 Mar 2004 22:22:04 -0000	1.66
--- dist.py	11 Jun 2004 21:50:32 -0000	1.67
***************
*** 159,162 ****
--- 159,163 ----
          # Distribution as a convenience to the developer.
          self.packages = None
+         self.package_data = {}
          self.package_dir = None
          self.py_modules = None




More information about the Python-checkins mailing list