-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.cfg
59 lines (52 loc) · 1.5 KB
/
setup.cfg
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[metadata]
name = kbbi
version = 0.4.3
description = A module that scraps a page in the online Indonesian dictionary (KBBI).
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/laymonage/kbbi-python
author = sage
author_email = laymonage@gmail.com
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: End Users/Desktop
License :: OSI Approved :: MIT License
Natural Language :: Indonesian
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Text Processing :: Linguistic
keywords = kbbi kamus bahasa indonesia indonesian natural language scraper
[options]
packages = find:
package_dir = =src
install_requires =
appdirs
beautifulsoup4
requests
python_requires = >=3.6
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
kbbi=kbbi:main
kbbi-autentikasi=kbbi:autentikasi
[coverage:run]
branch = True
source = kbbi
[coverage:report]
show_missing = True
[flake8]
ignore = E203,W503
[isort]
known_third_party = appdirs,bs4,pytest,requests
known_first_party = kbbi