version bump to 1.0.1, added me to authors
This commit is contained in:
parent
c280150707
commit
26e4cc1063
11
README.md
11
README.md
|
@ -1,7 +1,6 @@
|
||||||
sqlite2json
|
# sqlite2json
|
||||||
======
|
|
||||||
|
|
||||||
This script dumps all* the tables in an sqlite database as json.
|
This script dumps all\* the tables in an sqlite database as json.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
@ -18,3 +17,9 @@ Here is a more useful version of the above example:
|
||||||
|
|
||||||
|
|
||||||
\*The script doesn't dump the contents of of the sqlite_master table
|
\*The script doesn't dump the contents of of the sqlite_master table
|
||||||
|
|
||||||
|
# Authors
|
||||||
|
|
||||||
|
* John Gerlock `<john@pikkey.com>`
|
||||||
|
|
||||||
|
* Jeffrey Paul `<sneak@sneak.berlin>`
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -2,8 +2,8 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='sqlite2json',
|
name='sqlite2json',
|
||||||
version='1.0.0',
|
version='1.0.1',
|
||||||
author='John gerlock',
|
author='John Gerlock',
|
||||||
author_email='john@pikkey.com',
|
author_email='john@pikkey.com',
|
||||||
packages=['sqlite2json'],
|
packages=['sqlite2json'],
|
||||||
url='https://github.com/john-g-g/sqlite2json',
|
url='https://github.com/john-g-g/sqlite2json',
|
||||||
|
|
Loading…
Reference in New Issue