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

Tres Seaver tseaver@zope.com
Mon, 21 Jan 2002 09:12:01 -0500


Update of /cvs-repository/StandaloneSTX
In directory cvs.zope.org:/tmp/cvs-serv4794

Added Files:
	MANIFEST MANIFEST.in README setup.cfg setup.py 
Log Message:
 - Initial checkin.

=== Added File StandaloneSTX/MANIFEST ===
MANIFEST
MANIFEST.in
README
setup.cfg
setup.py
./ClassicDocumentClass.py
./ClassicStructuredText.py
./DocBookClass.py
./DocumentClass.py
./DocumentWithImages.py
./HTMLClass.py
./HTMLWithImages.py
./ST.py
./STDOM.py
./STletters.py
./StructuredText.py
./Zwiki.py
./__init__.py
regressions/Acquisition.ref
regressions/Acquisition.stx
regressions/ExtensionClass.ref
regressions/ExtensionClass.stx
regressions/InnerLinks.ref
regressions/InnerLinks.stx
regressions/Links.ref
regressions/Links.stx
regressions/MultiMapping.ref
regressions/MultiMapping.stx
regressions/examples.ref
regressions/examples.stx
regressions/examples1.ref
regressions/examples1.stx
regressions/index.ref
regressions/index.stx
regressions/table.ref
regressions/table.stx
scripts/StructuredText
tests/testStructuredText.py


=== Added File StandaloneSTX/MANIFEST.in ===
include MANIFEST 
include MANIFEST.in 
include README
recursive-include tests *.py
recursive-include regressions *.stx *.ref
recursive-include scripts *
global-exclude *~ .*~


=== Added File StandaloneSTX/README ===


http://cvs.zope.org/Packages/StructuredText/
http://cvs.zope.org/Packages/StructuredText/StructuredText.tar.gz?tarball=1

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

PYTHON=python
pushd /tmp
wget http://cvs.zope.org/Packages/StructuredText/StructuredText.tar.gz?tarball=1
tar xzf /tmp/StructuredText.tar.gz?tarball=1
rm /tmp/StructuredText.tar.gz?tarball=1
cd StructuredText
$PYTHON setup.py install
popd



=== Added File StandaloneSTX/setup.cfg ===
[bdist_rpm]
release = 1
packager = Hartmut Goebel <hartmut.goebel@noris.net>
doc_files = README
#		CHANGES.txt
#		USAGE.txt
#		doc/
#		examples/


=== Added File StandaloneSTX/setup.py ===
#!/usr/bin/env python
#
#   Based on distutils configuration contributed by Harmut Goerbel.
#

from distutils.core import setup

setup(name="StructuredText",
      version="0.1",
      description="Structured Text Manipulation",
      author="Tres Seaver",
      author_email="tseaver@zope.com",
      url="http://cvs.zope.org/Packages/StructuredText/",
      package_dir = {'StructuredText': '.'},
      packages=['StructuredText'],
      scripts=['scripts/StructuredText'],
      )