1 Star 0 Fork 0

谭富祥/monotonic_align

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 598 Bytes
一键复制 编辑 原始数据 按行查看 历史
import numpy
from setuptools import Extension, find_packages
from distutils.core import setup
from Cython.Build import cythonize
_VERSION = "1.2"
ext_modules = cythonize(
["monotonic_align/core.pyx",
"monotonic_align/core1alt.pyx",
"monotonic_align/core2.pyx",
"monotonic_align/core2eps.pyx",
],
compiler_directives={"language_level": "3"},
)
setup(
name="monotonic_align",
ext_modules=ext_modules,
include_dirs=[numpy.get_include(), "monotonic_align"],
packages=find_packages(),
setup_requires=["numpy", "cython"],
install_requires=["numpy"],
version=_VERSION,
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tan_fu_xiang/monotonic_align.git
[email protected]:tan_fu_xiang/monotonic_align.git
tan_fu_xiang
monotonic_align
monotonic_align
master

搜索帮助