[Zope-CVS] CVS: StandaloneZConfig - MANIFEST.in:1.1 README:1.1 setup.cfg:1.1 setup.py:1.1

Tres Seaver tseaver@zope.com
Wed, 26 Feb 2003 23:43:59 -0500


Update of /cvs-repository/StandaloneZConfig
In directory cvs.zope.org:/tmp/cvs-serv5420

Added Files:
	MANIFEST.in README setup.cfg setup.py 
Log Message:
 - First pass at installable ZConfig.

=== Added File StandaloneZConfig/MANIFEST.in ===
include MANIFEST 
include MANIFEST.in 
include README
global-exclude *~ .*~


=== Added File StandaloneZConfig/README ===
Installation requires the distutil-Package.

You may either create a RPM and install this, or install directly from
the source distribution.

Creating RPMS:

  python setup.py bdist_rpm

  If you need to force the pyton interpreter to eg. pyton2:
     python2 setup.py bdist_rpm --python=python2


Installation from the source distribution:

     python setup.py install

   To install to a user's home-dir:
     python setup.py install --home=<dir>

   To install to another prefix (eg. /usr/local)
     python setup.py install --prefix=/usr/local

  If you need to force the pyton interpreter to eg. pyton2:
     python2 setup.py install

  For more Information please refer to
     http://www.python.org/doc/current/inst/inst.html




=== Added File StandaloneZConfig/setup.cfg ===
[bdist_rpm]
release = 1
packager = Tres Seaver <tseaver@zope.com>
doc_files = README


=== Added File StandaloneZConfig/setup.py ===
#!/usr/bin/env python

from distutils.core import setup

setup(name="ZConfig",
      version="0.1",
      description="Structured Text Manipulation",
      author="Fred Drake",
      author_email="fred@zope.com",
      url="http://cvs.zope.org/Packages/ZConfig/",
      packages=[ 'ZConfig'
               , 'ZConfig.tests'
               ],
      )