-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 826 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from distutils.core import setup
from Cython.Build import cythonize
import codecs
with codecs.open('README', encoding='utf8') as fin:
long_description = fin.read()
setup(
name = 'jsaone',
version='0.2',
license='GPL',
author='Pietro Battiston',
author_email='[email protected]',
url='http://pietrobattiston.it/jsaone',
description='Incremental JSON parser',
long_description=long_description,
ext_modules = cythonize("jsaone_cyt.pyx"),
py_modules=['jsaone', 'jsaone_py'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
'Topic :: Internet :: WWW/HTTP'
]
)