<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>enum_meta</name>
<shortdesc>Provide enumerated type classes</shortdesc>
<description>This Python module provides a metclass-based approach to providing enumerated
types in Python. Enumerated types are defined by define a subclass of the Enum
class, with the class attributes defined the enumerated values. Dictionary style
methods are also provided for things such as accessing and iterating over the
enumeration values. Enumerated type classes can be further subclassed and/or
merged. Once enumerated type classes have been defined, they cannot easily be
modified.

Example of use:

&gt;&gt;&gt; class Season(Enum):
...    summer = 'Summer'
...    autumn = 'Autumn'
...    winter = 'Winter'
...    spring = 'Spring'

&gt;&gt;&gt; this_season = Season.spring
&gt;&gt;&gt; Season.values()
['Summer', 'Autumn', 'Winter', 'Spring']


This requires Python 2.2 or greater.</description>
<download-page>http://www.radlogic.com/releases/enum_meta.py</download-page>
<homepage rdf:resource="http://www.radlogic.com.au/downloads.htm" />
<maintainer><foaf:Person><foaf:name>Tim Wegener</foaf:name>
<foaf:mbox_sha1sum>0c3162138574f8ca03d75aa52248d593f02cdebd</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>0.3</revision></Version></release>
</Project></rdf:RDF>