-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (45 loc) · 1.22 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
[tool.poetry]
name = "pyproject-cli"
version = "0.1.0"
description = "CLI tool for settingup and managing a python project."
authors = ["Yuki Nagato <37764578+YUKI2eN3e@users.noreply.github.com>"]
packages = [
{ include = "pyproject_cli", from = "src" }
]
readme = "README.md"
[tool.poetry.scripts]
pyproject-cli = "pyproject_cli.__main__:main"
[tool.poetry.dependencies]
python = "^3.11"
Jinja2 = "^3.1.3"
rich-argparse = "^1.4.0"
argcomplete = "^3.2.2"
tomlkit = "^0.12.3"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.14"
mypy = "^1.8.0"
pre-commit = "^3.6.0"
ipython = "^8.20.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
target-version = "py310"
extend-select = ["I"]
ignore = ["E402"]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401", "F403"]
[tool.ruff.isort]
case-sensitive = true
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
[tool.ruff.pydocstyle]
convention = "google"