Bertalign-1

This commit is contained in:
nlpfun
2021-05-17 23:44:19 +08:00
parent 025bc2afe4
commit ca6ffedb45
89 changed files with 18549 additions and 382 deletions

42
bin/bleualign/setup.py Normal file
View File

@@ -0,0 +1,42 @@
# -*- coding: utf-8 -*-
import os
import setuptools
def read_file(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setuptools.setup(
name = 'bleualign',
version = '0.1.1',
description = 'An MT-based sentence alignment tool',
long_description = read_file('README.md'),
author = 'Rico Sennrich',
author_email = 'sennrich@cl.uzh.ch',
url = 'https://github.com/rsennrich/Bleualign',
download_url = 'https://github.com/rsennrich/Bleualign',
keywords = [
'Sentence Alignment',
'Natural Language Processing',
'Statistical Machine Translation',
'BLEU',
],
classifiers = [
# which Development Status?
# 'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing',
'Topic :: Text Processing :: Linguistic',
],
packages = ['bleualign'],
)