forked from OpenNMT/OpenNMT-tf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (65 loc) · 2.37 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
58
59
60
61
62
63
64
65
66
67
68
69
import os
from setuptools import setup, find_packages
tests_require = [
"parameterized",
"nose2"
]
def get_long_description():
readme_path = os.path.join(os.path.dirname(__file__), "README.md")
with open(readme_path, encoding="utf-8") as readme_file:
return readme_file.read()
setup(
name="OpenNMT-tf",
version="2.8.0",
license="MIT",
description="Neural machine translation and sequence learning using TensorFlow",
long_description=get_long_description(),
long_description_content_type="text/markdown",
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",
python_requires='>=3.5',
install_requires=[
"ctranslate2>=1.7,<2;platform_system=='Linux'",
"pyonmttok>=1.18.1,<2;platform_system=='Linux'",
"pyyaml>=5.3,<5.4",
"rouge>=1.0,<2",
"sacrebleu>=1.4.3,<2",
"tensorflow>=2.1,<2.2",
"tensorflow-addons>=0.8.1,<0.9"
],
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",
],
}
)