Skip to content

Commit f7f94fb

Browse files
authored
Merge pull request #45 from getify/pradyunsg/python-release
2 parents 243d3d6 + f371ea4 commit f7f94fb

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

README.rst

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,22 @@ A port of the `JSON-minify` utility to the Python language.
66
Overview
77
--------
88

9-
`JSON-minify` minifies blocks of JSON-like content into valid JSON by removing all whitespace *and* JS-style comments (single-line `//` and multiline `/* .. */`).
9+
`JSON-minify` minifies blocks of JSON-like content into valid JSON by removing
10+
all whitespace *and* JS-style comments (single-line `//` and multi-line
11+
`/* .. */`).
1012

11-
With `JSON-minify`, you can maintain developer-friendly JSON documents, but minify them before parsing or transmitting them over-the-wire.
13+
With `JSON-minify`, you can maintain developer-friendly JSON documents, but
14+
minify them before parsing or transmitting them over-the-wire.
1215

1316
Installation
1417
------------
1518

16-
This package is currently not hosted on PyPI. You can install it using pip as follows::
19+
You can install using pip as follows::
20+
21+
pip install JSON-minify
22+
23+
If you wish to use the development version fo JSON-minify, you can install it
24+
as follows::
1725

1826
pip install git+https://github.com/getify/JSON.minify@python
1927

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal=1

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
from setuptools import setup
22

33
try:
4-
with open("README.md") as f:
4+
with open("README.rst") as f:
55
long_description = f.read()
66
except OSError:
77
long_description = ""
88

99
setup(
1010
# Metadata
1111
name="JSON_minify",
12-
version="0.2.0",
12+
version="0.3.0",
1313
description=(
1414
"A simple script to minify valid JSON, containing C/C++ style comments"
1515
),

0 commit comments

Comments
 (0)