mirror of
https://github.com/kennethreitz-archive/ijson.git
synced 2026-06-05 15:40:17 +00:00
15 lines
444 B
Python
15 lines
444 B
Python
# -*- coding:utf-8 -*-
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name = 'ijson',
|
|
version = '0.5.0',
|
|
author = 'Ivan Sagalaev',
|
|
author_email = 'Maniac@SoftwareManiacs.Org',
|
|
packages = ['ijson'],
|
|
url = 'https://launchpad.net/ijson',
|
|
license = 'LICENSE.txt',
|
|
description = 'A Python wrapper to YAJL providing standard iterator interface to streaming JSON parsing',
|
|
long_description = open('README.txt').read(),
|
|
)
|