mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-15 08:57:42 +00:00
14 lines
361 B
Python
14 lines
361 B
Python
import sys
|
|
from distutils.core import setup
|
|
from Cython.Distutils.extension import Extension
|
|
from Cython.Distutils import build_ext
|
|
|
|
ext_modules = []
|
|
ext_modules.append(Extension('jsonparser',
|
|
['./jsonparser.pyx'], language = 'c++'))
|
|
|
|
setup(
|
|
name = 'json-parser python wrapper',
|
|
cmdclass = {'build_ext' : build_ext},
|
|
ext_modules = ext_modules
|
|
) |