forked from OpenNMT/OpenNMT-tf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (55 loc) · 1.95 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, find_packages
tests_require = [
"parameterized",
"nose2"
]
setup(
name="OpenNMT-tf",
version="2.4.0",
license="MIT",
description="Neural machine translation and sequence learning using TensorFlow",
author="OpenNMT",
author_email="guillaume.klein@systrangroup.com",
url="https://opennmt.net",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
project_urls={
"Documentation": "https://opennmt.net/OpenNMT-tf/",
"Forum": "https://forum.opennmt.net/",
"Gitter": "https://gitter.im/OpenNMT/OpenNMT-tf",
"Source": "https://github.com/OpenNMT/OpenNMT-tf/"
},
keywords="tensorflow opennmt nmt neural machine translation",
install_requires=[
"pyonmttok>=1.17.0,<2;platform_system=='Linux'",
"pyyaml==5.1.*",
"rouge==0.3.1",
"sacrebleu>=1.4.1,<2",
"tensorflow-addons>=0.7,<0.8"
],
extras_require={
"tests": tests_require,
},
tests_require=tests_require,
test_suite="nose2.collector.collector",
packages=find_packages(exclude=["bin", "*.tests"]),
entry_points={
"console_scripts": [
"onmt-ark-to-records=opennmt.bin.ark_to_records:main",
"onmt-build-vocab=opennmt.bin.build_vocab:main",
"onmt-detokenize-text=opennmt.bin.detokenize_text:main",
"onmt-main=opennmt.bin.main:main",
"onmt-merge-config=opennmt.bin.merge_config:main",
"onmt-tokenize-text=opennmt.bin.tokenize_text:main",
],
}
)