2019-05-17 14:15:18 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2022-02-13 10:35:43 +00:00
|
|
|
__author__ = "Fabio Caccamo"
|
|
|
|
__copyright__ = "Copyright (c) 2019-present - Fabio Caccamo"
|
2021-10-12 12:27:35 +00:00
|
|
|
__description__ = (
|
2022-02-13 10:35:43 +00:00
|
|
|
"python-benedict is a dict subclass with keylist/keypath support, normalized I/O"
|
|
|
|
" operations (base64, csv, ini, json, pickle, plist, query-string, toml, xml, yaml)"
|
|
|
|
" and many utilities... for humans, obviously."
|
2021-10-12 12:27:35 +00:00
|
|
|
)
|
2022-02-13 10:35:43 +00:00
|
|
|
__email__ = "fabio.caccamo@gmail.com"
|
|
|
|
__license__ = "MIT"
|
|
|
|
__title__ = "benedict"
|
2022-08-23 08:01:46 +00:00
|
|
|
__version__ = "0.25.3"
|