-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 908 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="th-simple-preprocessor",
version="0.10.1",
author="WISESIGHT Product Development",
author_email="tequila@wisesight.com",
description="Simple Thai Preprocess Functions",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wisesight/th-simple-preprocessor",
install_requires=["emoji"],
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: Thai",
"Topic :: Scientific/Engineering",
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Linguistic",
],
python_requires=">=3.7",
)