-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
78 lines (68 loc) · 2.3 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
70
71
72
73
74
75
76
77
78
import os
from setuptools import find_packages, setup
base_dir = os.path.dirname(os.path.abspath(__file__))
tests_require = [
"parameterized==0.8.1",
]
def get_long_description():
readme_path = os.path.join(base_dir, "README.md")
with open(readme_path, encoding="utf-8") as readme_file:
return readme_file.read()
def get_project_version():
version = {}
with open(os.path.join(base_dir, "yimt", "version.py"), encoding="utf-8") as fp:
exec(fp.read(), version)
return version
version = get_project_version()
tf_version_requirement = ">=%s,<%s" % (
version["INCLUSIVE_MIN_TF_VERSION"],
version["EXCLUSIVE_MAX_TF_VERSION"],
)
setup(
name="yimt",
version=version["__version__"],
license="MIT",
description="Neural machine translation using TensorFlow",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="LiuXiaofeng",
author_email="[email protected]",
url="https://github.com/hlp-ai",
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 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
project_urls={
"Source": "https://github.com/hlp-ai/mt-core",
},
keywords="tensorflow yimt nmt neural machine translation",
python_requires=">=3.7",
install_requires=[
"ctranslate2>=2.17.0,<3",
"packaging",
"pyonmttok>=1.29.0,<2",
"pyyaml>=5.3,<7",
"rouge>=1.0,<2",
"sacrebleu>=1.5.0,<2.3",
"tensorflow-addons>=0.16,<0.18",
"sentencepiece>=0.1.96",
],
extras_require={
"tensorflow": [
"tensorflow" + tf_version_requirement,
"tensorflow-text" + tf_version_requirement,
],
"tests": tests_require,
},
tests_require=tests_require,
packages=find_packages(exclude=["bin", "*.tests"]),
)