mirror of
https://github.com/KaiyangZhou/deep-person-reid.git
synced 2025-06-03 14:53:23 +08:00
15 lines
301 B
Python
15 lines
301 B
Python
from distutils.core import setup
|
|
from distutils.extension import Extension
|
|
from Cython.Build import cythonize
|
|
|
|
|
|
ext_modules = [
|
|
Extension('eval_metrics_cy',
|
|
['eval_metrics_cy.pyx']
|
|
)
|
|
]
|
|
|
|
setup(
|
|
name='Cython-based reid evaluation code',
|
|
ext_modules=cythonize(ext_modules)
|
|
) |