forked from CPJKU/wechsel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 776 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="wechsel",
version="0.0.4",
author="Benjamin Minixhofer",
packages=find_packages(),
author_email="[email protected]",
url="https://github.com/cpjku/wechsel",
description="Code for WECHSEL: Effective initialization of subword embeddings for cross-lingual transfer of monolingual language models.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
python_requires=">=3.6.0",
install_requires=[
"requests>=2.26.0",
"gensim>=4.1.2",
"fasttext>=0.9.2",
"datasets>=1.16.1",
"tqdm>=4.62.3",
"scipy>=1.7.3",
"scikit-learn>=1.0.1",
"nltk>=3.6.5",
],
license="MIT",
)