|
| 1 | +import setuptools |
| 2 | + |
| 3 | +with open("README.md", mode="r", encoding="utf-8") as fh: |
| 4 | + long_description = fh.read() |
| 5 | + |
| 6 | +REQUIRED_PACKAGES = [ |
| 7 | + 'requests', |
| 8 | + 'wget', |
| 9 | +] |
| 10 | + |
| 11 | +setuptools.setup( |
| 12 | + name="word2word", |
| 13 | + version="0.1.6", |
| 14 | + author="Kyubyong Park, Dongwoo Kim, Yo Joong Choe", |
| 15 | + author_email="kbpark.linguist@gmail.com, kimdwkimdw@gmail.com, yjchoe33@gmail.com", |
| 16 | + description="Word Translator for 3,564 Language Pairs", |
| 17 | + install_requires=REQUIRED_PACKAGES, |
| 18 | + license='Apache License 2.0', |
| 19 | + long_description=long_description, |
| 20 | + long_description_content_type="text/markdown", |
| 21 | + url="https://github.com/Kyubyong/word2word", |
| 22 | + packages=setuptools.find_packages(), |
| 23 | + package_data={'word2word': ['word2word/supporting_languages.txt']}, |
| 24 | + python_requires=">=3.6", |
| 25 | + include_package_data=True, |
| 26 | + classifiers=[ |
| 27 | + 'Development Status :: 5 - Production/Stable', |
| 28 | + 'Intended Audience :: Developers', |
| 29 | + 'Intended Audience :: Science/Research', |
| 30 | + "License :: OSI Approved :: Apache Software License", |
| 31 | + "Operating System :: OS Independent", |
| 32 | + "Programming Language :: Python :: 3", |
| 33 | + 'Programming Language :: Python :: 3.6', |
| 34 | + 'Programming Language :: Python :: 3.7', |
| 35 | + ], |
| 36 | +) |
0 commit comments