Metadata-Version: 1.1
Name: attributetools
Version: 0.1.1
Summary: A decorator to set some attribute to a function.
Home-page: https://github.com/paulo-romano/attributetools
Author: Paulo Romano
Author-email: pauloromanocarvalho@gmail.com
License: MIT
Download-URL: https://github.com/paulo-romano/attributetools/tarball/0.1
Description: # attributetools
        A decorator to set some attribute to a function
        
        ## install
        pip install git+https://github.com/paulo-romano/attributetools.git
        
        ## usage
        ```python
        from attributetools import attribute
        
        @attribute(short_description='Mark me as paid')
        def doitfunc(request, queryset):
            pass
        ```
        
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
