From fe773eba9aecd744465f61f62a23d282759ce980 Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Tue, 24 Apr 2018 13:27:46 -0700 Subject: [PATCH] cutting a new release. modified: README.rst modified: setup.py --- README.rst | 2 +- setup.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 7a29c39..d38db93 100644 --- a/README.rst +++ b/README.rst @@ -51,7 +51,7 @@ wild (defaults to `False`): if `wild` is `True`, treat the given `key` as a case insensitive substring when performing lookups. -return_keys (defaults to `False`): +with_keys (defaults to `False`): if `with_keys` is `True`, return a dictionary of all matched keys and a list of values. diff --git a/setup.py b/setup.py index a9a061d..8e9b7d9 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ with open('requirements.txt', 'r') as f: setup( name = 'nested-lookup', - version = '0.1.4', + version = '0.1.5', description = 'lookup a key in a deeply nested document of dicts and lists', keywords = 'nested document dictionary dict list lookup schema json xml yaml', long_description = open('README.rst').read(), @@ -40,6 +40,9 @@ setup( 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], )