-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (51 loc) · 1.58 KB
/
pyproject.toml
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[project]
name = "Utsuho"
authors = [
{ name = "Nobuyuki Sekimori", email = "[email protected]" },
]
description = "Utsuho is a Python module that facilitates bidirectional conversion between half-width katakana and full-width katakana in Japanese, as well as between hiragana and katakana."
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"
dependencies = ["click>=8.1.7"]
dynamic = ["version"]
[project.urls]
"Source Code" = "https://github.com/juno-rmks/utsuho/"
"Issue Tracker" = "https://github.com/juno-rmks/utsuho/issues/"
"Documentation" = "https://utsuho.readthedocs.io/"
[project.optional-dependencies]
test = ["pytest", "coverage", "pytest-benchmark"]
dev = ["build", "twine", "autopep8", "isort"]
docs = [
"Sphinx==5.3.0",
"sphinx-intl==2.1.0",
"sphinx-rtd-theme==1.2.0",
"myst-parser==1.0.0",
]
[project.scripts]
utsuho = "utsuho.cli:cli"
[tool.setuptools.dynamic]
version = { attr = "utsuho.__version__" }
[tool.autopep8]
max_line_length = 159
[tool.isort]
multi_line_output = 3
line_length = 159
use_parentheses = true
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib", "--benchmark-skip"]
filterwarnings = ["error"]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.coverage.run]
source = ["src"]
[tool.coverage.report]
exclude_lines = ["if __name__ == .__main__.:"]