This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.cfg
88 lines (80 loc) · 1.95 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[bdist_wheel]
universal=0
[flake8]
ignore = E701
max-line-length = 160
exclude = .git,__pycache__,docs/conf.py,build,dist,tmp,venv
[metadata]
name = pykakasi
description = Kana kanji simple inversion library
copyright = Copyright (C) 2010-2021 Hiroshi Miura
license = GPLv3
author = Hiroshi Miura
author_email = [email protected]
url = https://github.com/miurahr/pykakasi
long_description = file: README.rst, CHANGELOG.rst
long_description_content_type = text/x-rst
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
include_package_data = True
package_dir =
=src
packages = find:
provides = pykakasi
setup_requires =
setuptools>=42
setuptools-scm[toml]>=3.5.0
install_requires =
jaconv
deprecated
importlib_metadata;python_version<"3.8"
scripts =
bin/kakasi
[options.packages.find]
where = src
[options.package_data]
* =
src/data/*.utf8
src/pykakasi/*.pyi
src/pykakasi/py.typed
[options.extras_require]
test =
pytest
pytest-benchmark
pytest-pep8
pytest-cov
pytest-profiling
coverage[toml]>=5.2
py-cpuinfo
docs =
sphinx>=1.8
sphinx-intl
sphinx-py3doc-enhanced-theme
sphinx_rtd_theme
check =
mypy==0.770
mypy_extensions==0.4.3
docutils
check-manifest
flake8
flake8-black
flake8-deprecated
readme-renderer
pygments
isort
twine