Skip to content

Commit

Permalink
Updated version number
Browse files Browse the repository at this point in the history
  • Loading branch information
bpeterso2000 committed Feb 15, 2017
1 parent 1002255 commit 290bb89
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jsoncut/__init__.py
Expand Up @@ -2,9 +2,10 @@
from . import core
from . import exceptions
from . import highlighter
from . import inspector
from . import sequencer
from . import tokenizer
from . import treecrawler


__version__ = '0.1.0'
__version__ = '0.1.1'
24 changes: 24 additions & 0 deletions setup.py
@@ -0,0 +1,24 @@
from setuptools import setup

setup(
name='jsoncut',
author='Brian Peterson',
author_email='bpeterso2000@yahoo.com',
version='0.1.1',
url='http://github.com/bpeterso2000/jsoncut',
packages=['jsoncut'],
description='A JSON inspection & pruning tool.',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
install_requires=['click'],
extras_require={
'colors': ['colorama'],
'json_higlighting': ['pygments']
},
entry_points={
'console_scripts': ['jsoncut=jsoncut.cli:main']
}
)

0 comments on commit 290bb89

Please sign in to comment.