-
Notifications
You must be signed in to change notification settings - Fork 63
/
setup.py
37 lines (35 loc) · 1021 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
29
30
31
32
33
34
35
36
37
import codecs
import setuptools
setuptools.setup(
name="bnlp_toolkit",
version="4.0.3",
author="Sagor Sarker",
author_email="[email protected]",
description="BNLP is a natural language processing toolkit for Bengali Language",
long_description=codecs.open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/sagorbrur/bnlp",
license="MIT",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=[
"sentencepiece==0.2.0",
"gensim==4.3.2",
"nltk",
"numpy",
"scipy==1.10.1",
"sklearn-crfsuite==0.3.6",
"tqdm==4.66.3",
"ftfy==6.2.0",
"emoji==1.7.0",
"requests",
],
extras_require={
"fasttext": ["fasttext==0.9.2"],
},
)