-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
42 lines (39 loc) · 1.25 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
37
38
39
40
41
42
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as readme_file:
readme = readme_file.read()
setup(
name="pythaisa",
version="0.2.1",
description="Python Thai Sentiment Analysis",
long_description=readme,
long_description_content_type="text/markdown",
author="wannaphong",
author_email="[email protected]",
url="https://github.com/PyThaiNLP/thai_sentiment_analysis",
packages=find_packages(),
test_suite="tests",
python_requires=">=3.6",
include_package_data=True,
install_requires=["pythainlp","nltk"],
license="Apache Software License 2.0",
zip_safe=False,
keywords=[
"NLP",
"natural language processing",
"text analytics",
"ThaiNLP",
"text processing",
"localization",
],
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: Thai",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Linguistic",
]
)