first commit, working with tests.
new file: .gitignore new file: README.rst new file: __init__.py new file: nested_lookup.py new file: setup.py new file: test_nested_loopkup.py
This commit is contained in:
commit
b530c0a586
6 changed files with 111 additions and 0 deletions
26
setup.py
Normal file
26
setup.py
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# installation: pip install nested-lookup
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name = 'nested-lookup',
|
||||
version = '0.0.1',
|
||||
description = 'lookup a key in a deeply nested document of dicts and lists',
|
||||
keywords = 'nested document dictionary dict list lookup schema json xml',
|
||||
long_description = open('README.rst').read(),
|
||||
|
||||
author = 'Russell Ballestrini',
|
||||
author_email = 'russell@ballestrini.net',
|
||||
url = 'https://github.com/russellballestrini/nested-lookup',
|
||||
|
||||
platforms = ['All'],
|
||||
license = 'Public Domain',
|
||||
|
||||
py_modules = ['nested_lookup'],
|
||||
include_package_data = True,
|
||||
)
|
||||
|
||||
# setup keyword args: http://peak.telecommunity.com/DevCenter/setuptools
|
||||
|
||||
# built and uploaded to pypi with this:
|
||||
# python setup.py sdist bdist_egg register upload
|
||||
Loading…
Add table
Add a link
Reference in a new issue