annotate genshi/__init__.py @ 900:83f72a384221 stable-0.6.x

Bump up version number of 0.6.x branch.
author cmlenz
date Thu, 22 Apr 2010 17:27:10 +0000
parents 04945cd67dad
children
rev   line source
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
1 # -*- coding: utf-8 -*-
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
2 #
852
04945cd67dad Remove usage of unicode literals in a couple of places where they were not strictly necessary.
cmlenz
parents: 851
diff changeset
3 # Copyright (C) 2006-2009 Edgewall Software
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
4 # All rights reserved.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
5 #
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
6 # This software is licensed as described in the file COPYING, which
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
7 # you should have received as part of this distribution. The terms
230
24757b771651 Renamed Markup to Genshi in repository.
cmlenz
parents: 66
diff changeset
8 # are also available at http://genshi.edgewall.org/wiki/License.
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
9 #
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
10 # This software consists of voluntary contributions made by many
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
11 # individuals. For the exact contribution history, see the revision
230
24757b771651 Renamed Markup to Genshi in repository.
cmlenz
parents: 66
diff changeset
12 # history and logs, available at http://genshi.edgewall.org/log/.
1
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
13
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
14 """This package provides various means for generating and processing web markup
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
15 (XML or HTML).
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
16
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
17 The design is centered around the concept of streams of markup events (similar
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
18 in concept to SAX parsing events) which can be processed in a uniform manner
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
19 independently of where or how they are produced.
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
20 """
821114ec4f69 Initial import.
cmlenz
parents:
diff changeset
21
425
5b248708bbed Try to use proper reStructuredText for docstrings throughout.
cmlenz
parents: 424
diff changeset
22 __docformat__ = 'restructuredtext en'
900
83f72a384221 Bump up version number of 0.6.x branch.
cmlenz
parents: 852
diff changeset
23 __version__ = '0.6.1'
424
d698a5556a55 Set the `__version__` property in `genshi.__init__`; only works with a setuptools install, though. Addresses #103.
cmlenz
parents: 336
diff changeset
24
230
24757b771651 Renamed Markup to Genshi in repository.
cmlenz
parents: 66
diff changeset
25 from genshi.core import *
24757b771651 Renamed Markup to Genshi in repository.
cmlenz
parents: 66
diff changeset
26 from genshi.input import ParseError, XML, HTML
Copyright (C) 2012-2017 Edgewall Software