加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1015 Bytes
一键复制 编辑 原始数据 按行查看 历史
Myle Ott 提交于 2019-11-02 08:03 . Add language_level to fastBPE.pyx (#32)
from setuptools import setup, find_packages, Extension
from distutils.command.sdist import sdist as _sdist
try:
from Cython.Build import cythonize
except ImportError:
use_cython = False
else:
use_cython = True
if use_cython:
extension = 'pyx'
else:
extension = 'cpp'
extensions = [
Extension(
'fastBPE',
[ "fastBPE/fastBPE." + extension ],
language='c++',
extra_compile_args=[
"-std=c++11", "-Ofast", "-pthread"
],
),
]
if use_cython:
extensions = cythonize(extensions)
with open('README.md') as f:
readme = f.read()
setup(
name = 'fastBPE',
version = '0.1.1',
description = 'C++ implementation of Neural Machine Translation of Rare Words with Subword Units, with Python API.',
url = 'https://github.com/glample/fastBPE',
long_description = readme,
long_description_content_type = 'text/markdown',
ext_package = '',
ext_modules = extensions,
packages=[
'fastBPE',
],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化