move nested_lookup into a module
modified: README.rst new file: nested_lookup/__init__.py renamed: nested_lookup.py -> nested_lookup/nested_lookup.py modified: setup.py
This commit is contained in:
parent
564f55a507
commit
825f5ff28f
4 changed files with 3 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
nested_lookup
|
||||
#############
|
||||
|
||||
.. image:: https://img.shields.io/badge/pypi-0.1.0-green.svg
|
||||
.. image:: https://img.shields.io/badge/pypi-0.1.1-green.svg
|
||||
:target: https://pypi.python.org/pypi/nested-lookup
|
||||
|
||||
.. image:: https://img.shields.io/badge/coverage-100%-green.svg
|
||||
|
|
|
|||
1
nested_lookup/__init__.py
Normal file
1
nested_lookup/__init__.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
from nested_lookup import nested_lookup
|
||||
2
setup.py
2
setup.py
|
|
@ -10,7 +10,7 @@ with open('requirements.txt', 'r') as f:
|
|||
|
||||
setup(
|
||||
name = 'nested-lookup',
|
||||
version = '0.1.0',
|
||||
version = '0.1.1',
|
||||
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(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue