Metadata-Version: 1.1
Name: MetaEnum
Version: 1.0
Summary: UNKNOWN
Home-page: http://github.com/matee911/MetaEnum
Author: Mateusz `matee` Pawlik
Author-email: matee@matee.net
License: MIT
Download-URL: http://github.com/matee911/MetaEnum/downloads
Description: 
              example of use:
        
              class FOO(MetaEnum):
                  BAZ = (0, 'bazik')
                  BAR = 1
        
              >>> FOO.BAZ
              0
              >>> FOO.BAR
              1
              >>> FOO.BAZ_name
              'BAZ'
              >>> FOO.BAZ_verbose
              'bazik'
              >>> FOO.get_verbose(FOO.BAZ)
              'bazik'
              >>> FOO.get_verbose(FOO.BAR)
              None
              >>> FOO.as_choices()
              [(0, 'bazik'), (1, None)]
        
              >>> FOO.by_name('BAZ')
              0
              >>> FOO.by_verbose('bazik')
              1
              
Platform: Any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
