forked from kumparan/nlp-id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1.07 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
from setuptools import setup
# Package details
setup(
name="nlp_id",
packages=["nlp_id"],
version="0.1.15.0",
license="MIT",
description="Kumparan's NLP Services",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
author="Frandy Eddy, Dhanang Hadhi Sasmita, Zavli Juwantara",
url="https://github.com/kumparan/nlp-id",
keywords=["Indonesian", "Bahasa", "NLP"],
package_data={
"": ["data/*"],
},
install_requires=["scikit-learn==1.2.2", "nltk==3.8.1", "wget==3.2", "pytest==7.3.1"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Text Processing :: Linguistic",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
],
)