-
Notifications
You must be signed in to change notification settings - Fork 81
/
setup.py
42 lines (40 loc) · 1.31 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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 = '[email protected]',
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'],
)