aboutsummaryrefslogtreecommitdiffstats
path: root/tagit/external/setproperty/preprocess.py
blob: 7c85b860a10689fa9cd1f8fb121c0e0fba0366e1 (plain)
1
2
3
4
5
6
7
8

from distutils.core import Extension
from Cython.Build import cythonize

ext = Extension(name="setproperty", sources=["setproperty.pyx"])
cythonize(ext)