[Checkins] SVN: ZConfig/trunk/ minor cleanup

Fred L. Drake, Jr. fdrake at gmail.com
Fri Sep 22 12:51:33 EDT 2006


Log message for revision 70351:
  minor cleanup

Changed:
  U   ZConfig/trunk/PUBLICATION.cfg
  U   ZConfig/trunk/README.txt

-=-
Modified: ZConfig/trunk/PUBLICATION.cfg
===================================================================
--- ZConfig/trunk/PUBLICATION.cfg	2006-09-22 16:41:33 UTC (rev 70350)
+++ ZConfig/trunk/PUBLICATION.cfg	2006-09-22 16:51:33 UTC (rev 70351)
@@ -4,7 +4,7 @@
 Home-page: http://www.zope.org/Members/fdrake/zconfig/
 Author: Fred L. Drake, Jr.
 Author-email: fred at zope.com
-License: ZPL 2
+License: ZPL 2.1
 Description: ZConfig is a configuration library intended for general use.  It
         supports a hierarchical schema-driven configuration model that allows
         a schema to specify data conversion routines written in Python.
@@ -21,8 +21,7 @@
         separate configuration support from configuration loading even with
         configuration data being defined and consumed by a wide range of
         separate packages.
-Platform: POSIX
-Platform: Windows
+Platform: Any
 Classifier: Intended Audience :: Developers
 Classifier: Intended Audience :: System Administrators
 Classifier: License :: OSI Approved :: Zope Public License

Modified: ZConfig/trunk/README.txt
===================================================================
--- ZConfig/trunk/README.txt	2006-09-22 16:41:33 UTC (rev 70350)
+++ ZConfig/trunk/README.txt	2006-09-22 16:51:33 UTC (rev 70351)
@@ -1,4 +1,5 @@
-This is ZConfig.
+ZConfig: Schema-driven configuration
+====================================
 
 ZConfig is a configuration library intended for general use.  It
 supports a hierarchical schema-driven configuration model that allows
@@ -36,27 +37,28 @@
   http://mail.zope.org/mailman/listinfo/zconfig/
 
 
-Creating RPMS:
+Installing from the source distribution
+---------------------------------------
 
-  python setup.py bdist_rpm
+For a simple installation::
 
-  If you need to force the Python interpreter to, for example, python2:
+  python setup.py install
 
-    python2 setup.py bdist_rpm --python=python2
 
+To install to a user's home-dir::
 
-Installation from the source distribution:
+  python setup.py install --home=<dir>
 
-    python setup.py install
 
-  To install to a user's home-dir:
-    python setup.py install --home=<dir>
+To install to another prefix (for example, /usr/local)::
 
-  To install to another prefix (eg. /usr/local)
-    python setup.py install --prefix=/usr/local
+  python setup.py install --prefix=/usr/local
 
-  If you need to force the python interpreter to e.g. python2:
-    python2 setup.py install
 
-  For more information please refer to
-    http://www.python.org/doc/current/inst/inst.html
+If you need to force the python interpreter to (for example) python2::
+
+  python2 setup.py install
+
+
+For more information on installing packages, please refer to
+`Installing Python Modules <http://docs.python.org/inst/inst.html>`__.



More information about the Checkins mailing list