brunns / brunns-json

Extended JSON encoding and decoding for Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

brunns-json

Extended JSON encoding and decoding for Python

made-with-python Build Status PyPi Version Python Versions Licence GitHub all releases GitHub forks GitHub stars GitHub watchers GitHub contributors GitHub issues GitHub issues-closed GitHub pull-requests GitHub pull-requests closed

Setup

Install with pip:

pip install brunns-json

(As usual, use of a venv or virtualenv is recommended.)

Developing

Requires tox. Run make precommit tells you if you're OK to commit. For more options, run:

make help

Releasing

Requires hub, setuptools and twine. To release n.n.n:

version="n.n.n"
git commit -am"Release $version" && git push # If not already all pushed, which it should be.
hub release create $version -m"Release $version"
python setup.py sdist
twine upload dist/`ls -t dist/ | head -n1`

About

Extended JSON encoding and decoding for Python

License:MIT License


Languages

Language:Python 85.1%Language:Makefile 14.9%