File size: 180 Bytes
e8ac98a
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from setuptools import setup
from Cython.Build import cythonize

setup(
    ext_modules = cythonize(
      "json.pyx",
      compiler_directives = {'language_level': "3"}
    ),
)