-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (77 loc) · 2.03 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
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
89
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dokyu"
description = "A solution for multi-language docstring"
readme = "README.md"
requires-python = ">=3.8"
authors = [{ name = "Nyakku Shigure", email = "[email protected]" }]
keywords = [
"docstring",
"i18n",
"multi-language",
"translation",
"translation-toolkit",
]
license = { text = "MIT" }
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = ["parsita", "pydantic"]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pytest>=7.4.0", "ruff==0.1.9", "pyright>=1.1.293", "syrupy", "build"]
[project.urls]
Homepage = "https://github.com/PFCCLab/dokyu"
Documentation = "https://github.com/PFCCLab/dokyu"
[project.scripts]
dokyu = "dokyu.__main__:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = { attr = "dokyu.__version__.VERSION" }
[tool.pyright]
include = ["src", "tests"]
pythonVersion = "3.9"
typeCheckingMode = "strict"
[tool.ruff]
line-length = 120
target-version = "py38"
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# Isort
"I",
# Pyupgrade
"UP",
# Flake8-pyi
"PYI",
# Yesqa
"RUF100",
]
ignore = [
"E501", # line too long, duplicate with black
"E731", # lambda sometimes is more readable
"F841", # local variable is assigned to but never used, duplicate with pyright
]
[tool.ruff.lint.per-file-ignores]
"src/dokyu/parser/docstring/*" = ["F821"]
[tool.ruff.lint.isort]
known-first-party = ["dokyu"]
[tool.pytest.ini_options]
python_files = ["tests/*.py", "tests/**/*.py"]