forked from kakaobrain/word2word
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.25 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
import setuptools
with open("README.md", mode="r", encoding="utf-8") as fh:
long_description = fh.read()
REQUIRED_PACKAGES = [
'requests',
'wget',
'numpy',
'tqdm',
]
setuptools.setup(
name="word2word",
version="1.0.0",
author="Kyubyong Park, Dongwoo Kim, Yo Joong Choe",
description="Easy-to-use word translations for 3,564 language pairs",
install_requires=REQUIRED_PACKAGES,
license='Apache License 2.0',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kakaobrain/word2word",
packages=setuptools.find_packages(),
package_data={'word2word': ['word2word/supporting_languages.txt']},
python_requires=">=3.6",
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)