Metadata-Version: 1.0
Name: typechecker
Version: 0.1.0
Summary: This module provides dynamic type check mechanism.
Home-page: https://github.com/shomah4a/typechecker
Author: Shoma Hosaka
Author-email: shoma.h4a+pypi@gmail.com
License: LGPL
Description: 
        This module provides dynamic type check mechanism.
        
          >>> from typechecker.typeinfo import typeinfo
          >>> @typeinfo(int, x=int, y=int)
          ... def add(x, y):
          ...     return x + y
          >>> add(10, 20)
          30
          >>> add('aa', 'bb')
          TypeError
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
