modified: .gitignore

new file:   Makefile
	modified:   README.rst
	modified:   nested_lookup/lookup_api.py
	new file:   nested_lookup/tests/__init__.py
	renamed:    test_lookup_api.py -> nested_lookup/tests/test_lookup_api.py
	renamed:    test_nested_lookup.py -> nested_lookup/tests/test_nested_lookup.py
	new file:   requirements-test.txt
	modified:   setup.py
This commit is contained in:
Russell Ballestrini 2022-07-06 14:47:54 -04:00
parent a8c790d60e
commit 1c6dbd32f8
9 changed files with 31 additions and 16 deletions

View file

@ -23,16 +23,16 @@ print(requirements())
setup(
name="nested-lookup",
version="0.2.23",
version="0.2.24",
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(),
author="Russell Ballestrini",
author_email="russell@ballestrini.net",
url="https://github.com/russellballestrini/nested-lookup",
author_email="russell.ballestrini@gmail.com",
url="https://git.unturf.com/python/nested-lookup",
platforms=["All"],
license="Public Domain",
packages=find_packages(),
packages=find_packages(exclude="tests"),
include_package_data=True,
install_requires=requirements(),
classifiers=[
@ -44,6 +44,7 @@ setup(
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)
@ -51,5 +52,5 @@ setup(
# build package:
# pip install twine
# python setup.py sdist
# python setup.py sdist bdist_egg
# twine upload dist/*