-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (37 loc) · 941 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
38
39
from setuptools import setup, find_packages
requirements = [
"pythainlp"
]
setup(
name="shannlp",
version="0.1.0",
description="Shan Natural Language Processing library",
long_description_content_type="text/markdown",
author="NoerNova",
author_email="[email protected]",
url="https://github.com/NoerNova/ShanNLP",
packages=find_packages(exclude=["tests", "tests.*"]),
python_requires=">=3.10",
package_data={
"shannlp": [
"corpus/*",
],
},
include_package_data=True,
install_requires=requirements,
license="Apache Software License 2.0",
zip_safe=False,
keywords=[
"shannlp",
"shan language",
"tai",
"NLP",
"natural language processing",
"text analytics",
"text processing",
"localization",
"computational linguistics",
"ShanNLP",
"Shan NLP",
],
)