new release

modified:   README.rst
	modified:   setup.py
This commit is contained in:
russellballestrini 2020-02-01 12:50:33 -05:00
parent b30371c699
commit 5403e53094
2 changed files with 4 additions and 4 deletions

View file

@ -23,7 +23,7 @@ print(requirements())
setup(
name="nested-lookup",
version="0.2.20",
version="0.2.21",
description="Python functions for working with deeply nested documents (lists and dicts) ",
keywords="nested document dictionary dict list lookup schema json xml yaml",
long_description=open("README.rst").read(),
@ -36,13 +36,13 @@ setup(
include_package_data=True,
install_requires=requirements(),
classifiers=[
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
# this library supports the following Python versions.
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)