Skip to content

Commit

Permalink
Add: setup python project package
Browse files Browse the repository at this point in the history
  • Loading branch information
NoerNova committed Apr 7, 2024
1 parent b9847ff commit a206ac2
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,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="noernova666@gmail.com",
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",
],
)

0 comments on commit a206ac2

Please sign in to comment.