forked from minhoryang/KoNLPy-gRPC
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
47 lines (41 loc) · 1.16 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
[metadata]
name = konlpy-homi
# Version needs regex in setup.py.
url = https://github.com/wesky93/KoNLPy-homi
license = GNU GPLv3
maintainer = wesky93
maintainer_email = wesky93@gmail.com
description = remote konlpy client
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
package_dir = = src
include_package_data = true
python_requires = >= 3.8
# Dependencies are in setup.py for GitHub's dependency graph.
[options.packages.find]
where = src
exclude =
tests
[flake8]
ignore = E226,E302,E41
exclude = ./*/.venv,./*/venv,venv,.venv,./node_modules,./*/*_pb2.py,./*/*_pb2_grpc.py,build
max-line-length = 120
per-file-ignores =
# __init__ module exports names
src/konlpy_homi/__init__.py: F401
./src/konlpy_homi/__init__.py: F401
[tool:pytest]
addopts =
--verbose
testpaths =
src/tests