diff options
author | Stefan Kögl <stefan@skoegl.net> | 2013-10-11 20:43:20 +0200 |
---|---|---|
committer | Stefan Kögl <stefan@skoegl.net> | 2013-10-11 20:43:20 +0200 |
commit | 9290130d30fbd4ef8ecc4c313a10dbfc37276b93 (patch) | |
tree | 0f8a78a4198d6c928602c43623810c6a09b16a10 /setup.py | |
parent | 3b841b3ffc54f4e1ea65320c80dcc4ce0b139a36 (diff) | |
download | python-json-patch-9290130d30fbd4ef8ecc4c313a10dbfc37276b93.tar.gz |
add "jsonpatch" commandline utility
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -52,10 +52,11 @@ setup(name=PACKAGE, url=WEBSITE, py_modules=MODULES, package_data={'': ['requirements.txt']}, - scripts=['bin/jsondiff'], + scripts=['bin/jsondiff', 'bin/jsonpatch'], entry_poimts = { 'console_scripts': [ 'jsondiff = jsondiff:main', + 'jsonpatch = jsonpatch:main', ]}, **OPTIONS ) |