-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
36 lines (31 loc) · 1.06 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
36
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="farasapy",
version="0.0.14",
author="MagedSaeed",
author_email="mageedsaeed1@gmail.com",
description="A Python Wrapper for the well Farasa toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MagedSaeed/farasapy",
packages=["farasa"],
package_dir={"farasa": "farasa"},
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Text Processing :: Linguistic",
"Natural Language :: Arabic",
"Intended Audience :: Science/Research",
"Environment :: Console",
],
python_requires=">=3.6",
install_requires=[
"requests",
"tqdm",
],
)
# scripts=['farasa/__init__.py','farasa/farasa_bin/*','farasa/farasa_bin/lib/*','farasa/tmp/*'],