forked from UKPLab/EasyNMT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.12 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
from setuptools import setup, find_packages
with open("README.md", mode="r", encoding="utf-8") as readme_file:
readme = readme_file.read()
setup(
name="EasyNMT",
version="2.0.1",
author="Nils Reimers",
author_email="[email protected]",
description="Easy to use state-of-the-art Neural Machine Translation",
long_description=readme,
long_description_content_type="text/markdown",
license="Apache License 2.0",
url="https://github.com/UKPLab/EasyNMT",
download_url="https://github.com/UKPLab/EasyNMT/archive/v2.0.1.zip",
packages=find_packages(),
install_requires=[
'tqdm',
'transformers>=4.4,<5',
'torch>=1.6.0',
'numpy',
'nltk',
'sentencepiece',
'fasttext'
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
keywords="Neural Machine Translation"
)