forked from bheinzerling/bpemb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 784 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
26
27
28
from setuptools import setup
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='bpemb',
version='0.3.2',
description='Byte-pair embeddings in 275 languages',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://nlp.h-its.org/bpemb',
author='Benjamin Heinzerling',
author_email='[email protected]',
license='MIT',
packages=['bpemb'],
install_requires=[
"gensim",
"numpy",
"requests",
"sentencepiece",
"tqdm"],
zip_safe=True,
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
])