import of github code used for the hackathon
[github-barcamp-201407] / ijson-1.1 / setup.py
1 # -*- coding:utf-8 -*-
2 from distutils.core import setup
3
4 setup(
5     name = 'ijson',
6     version = '1.1',
7     author = 'Ivan Sagalaev',
8     author_email = 'maniac@softwaremaniacs.org',
9     packages = ['ijson', 'ijson.backends'],
10     url = 'https://github.com/isagalaev/ijson',
11     license = 'LICENSE.txt',
12     description = 'Iterative JSON parser with a standard Python iterator interface',
13     long_description = open('README.rst').read(),
14     classifiers = [
15         'Development Status :: 5 - Production/Stable',
16         'License :: OSI Approved :: BSD License',
17         'Programming Language :: Python :: 2',
18         'Programming Language :: Python :: 3',
19         'Topic :: Software Development :: Libraries :: Python Modules',
20     ]
21 )

Benjamin Mako Hill || Want to submit a patch?