forked from laymonage/kbbi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 958 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
"""
File setup untuk modul KBBI.
"""
from setuptools import find_packages, setup
with open("README.md") as readme:
long_description = readme.read()
setup(
name="kbbi",
version="0.4.0",
description=(
"A module that scraps a page in the online Indonesian dictionary (KBBI)"
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/laymonage/kbbi-python",
author="sage",
author_email="[email protected]",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: Indonesian",
],
keywords=(
"kbbi kamus bahasa indonesia indonesian natural language scraper"
),
packages=find_packages(),
entry_points={"console_scripts": ["kbbi=kbbi:main"],},
install_requires=["requests", "beautifulsoup4",],
)