cutting a new release.

modified:   README.rst
	modified:   setup.py
This commit is contained in:
Russell Ballestrini 2018-04-24 13:27:46 -07:00
parent 756ad31763
commit fe773eba9a
2 changed files with 5 additions and 2 deletions

View file

@ -51,7 +51,7 @@ wild (defaults to `False`):
if `wild` is `True`, treat the given `key` as a case insensitive if `wild` is `True`, treat the given `key` as a case insensitive
substring when performing lookups. 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 if `with_keys` is `True`, return a dictionary of all matched keys
and a list of values. and a list of values.

View file

@ -13,7 +13,7 @@ with open('requirements.txt', 'r') as f:
setup( setup(
name = 'nested-lookup', name = 'nested-lookup',
version = '0.1.4', version = '0.1.5',
description = 'lookup a key in a deeply nested document of dicts and lists', description = 'lookup a key in a deeply nested document of dicts and lists',
keywords = 'nested document dictionary dict list lookup schema json xml yaml', keywords = 'nested document dictionary dict list lookup schema json xml yaml',
long_description = open('README.rst').read(), long_description = open('README.rst').read(),
@ -40,6 +40,9 @@ setup(
'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
], ],
) )