14 lines
328 B
Python
14 lines
328 B
Python
|
"""
|
||
|
WiderFace evaluation code
|
||
|
author: wondervictor
|
||
|
mail: tianhengcheng@gmail.com
|
||
|
copyright@wondervictor
|
||
|
"""
|
||
|
|
||
|
from distutils.core import setup, Extension
|
||
|
from Cython.Build import cythonize
|
||
|
import numpy
|
||
|
|
||
|
package = Extension('bbox', ['box_overlaps.pyx'], include_dirs=[numpy.get_include()])
|
||
|
setup(ext_modules=cythonize([package]))
|