Metadata-Version: 2.0
Name: auxlib
Version: 0.0.29
Summary: dict() -> new empty dictionary
Requires-Dist: PyYAML
Requires-Dist: enum34
Requires-Dist: python-dateutil
Provides-Extra: crypt
Requires-Dist: pycrypto; extra == 'crypt'

dict(mapping) -> new dictionary initialized from a mapping object's
    (key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
    d = {}
    for k, v in iterable:
        d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
    in the keyword argument list.  For example:  dict(one=1, two=2)
Home-page: https://github.com/kalefranz/auxlib
Author: Kale Franz
Author-email: kale@franz.io
License: ISC
Description: ======
        auxlib
        ======
        
        
        .. image:: https://img.shields.io/pypi/v/auxlib.svg
           :target: https://pypi.python.org/pypi/auxlib
        
        .. image:: https://travis-ci.org/kalefranz/auxlib.svg?branch=develop
           :target: https://travis-ci.org/kalefranz/auxlib
        
        .. image:: https://ci.appveyor.com/api/projects/status/epk1egfkid8wyd6r/branch/develop?svg=true
           :target: https://ci.appveyor.com/project/kalefranz/auxlib
        
        .. image:: https://codecov.io/github/kalefranz/auxlib/coverage.svg?branch=develop
           :target: https://codecov.io/github/kalefranz/auxlib?branch=develop
        
        .. image:: https://scrutinizer-ci.com/g/kalefranz/auxlib/badges/quality-score.png?b=develop
           :target: https://scrutinizer-ci.com/g/kalefranz/auxlib/?branch=develop
           :alt: Scrutinizer Code Quality
        
        .. image:: https://codeclimate.com/github/kalefranz/auxlib/badges/gpa.svg
           :target: https://codeclimate.com/github/kalefranz/auxlib
           :alt: Code Climate
        
        .. image:: https://codeclimate.com/github/kalefranz/auxlib/badges/issue_count.svg
           :target: https://codeclimate.com/github/kalefranz/auxlib
           :alt: Issue Count
        
        .. image:: https://www.quantifiedcode.com/api/v1/project/189a0c406b624aaf8c6ac16b80ff92b9/badge.svg
           :target: https://www.quantifiedcode.com/app/project/189a0c406b624aaf8c6ac16b80ff92b9
           :alt: Code issues
        
        .. image:: https://api.codacy.com/project/badge/grade/5195a5ac49fe49c59a4067b420fa76ad
           :target: https://www.codacy.com/app/kalefranz/auxlib
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: BSD
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
