-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
122 lines (106 loc) · 2.31 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[tool.bandit]
skips = ["B320"]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["tests", "*/tests"]
[tool.coverage.run]
branch = true
source = ["dlsite_utils", "tests"]
omit = ["*/site-packages/dlsite_utils/dlst.py"]
[tool.coverage.report]
show_missing = true
fail_under = 100
exclude_lines = ["pragma: no cover", "if TYPE_CHECKING:", "@overload"]
[tool.isort]
profile = "black"
multi_line_output = 3
lines_after_imports = 2
[tool.mypy]
strict = true
warn_unreachable = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
[[tool.mypy.overrides]]
module = ["tqdm"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["mutagen.*"]
implicit_reexport = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.pdm]
[tool.pdm.dev-dependencies]
coverage = [
"coverage[toml]>=7.4.0"
]
dev = [
"nox>=2023.4.22",
]
docs = [
"furo>=2023.9.10",
"myst-parser>=2.0.0",
"sphinx>=7.2.6",
"sphinx-click>=5.1.0",
]
lint = [
"pre-commit>=3.6.0"
]
mypy = [
"mypy>=1.8.0"
]
tests = [
"pygments>=2.17.2",
"pytest>=7.4.3",
"pytest-asyncio<1.0.0,>=0.21.0",
"pytest-mock<4.0.0,>=3.8.2",
]
safety = [
"safety>=2.3.5"
]
typeguard = [
"typeguard>=4.1.5",
]
xdoctest = [
"xdoctest[colors]>=1.1.2",
]
[tool.pdm.build]
includes = []
[tool.ruff]
target-version = "py39"
[project]
authors = [
{name = "byeonhyeok", email = "bhrevol@gmail.com"},
]
license = {text = "MIT"}
requires-python = ">=3.10,<4.0"
dependencies = [
"click>=8.0.1",
"dlsite-async<1.0.0,>=0.2.0",
"aiohttp<4.0.0,>=3.8.1",
"pathvalidate<3.3.0,>=3.2.3",
"cryptography<43.0.4,>=43.0.3",
"ruamel-yaml<1.0.0,>=0.18.0",
"tqdm<5.0.0,>=4.64.1",
"platformdirs<4.4.0,>=4.3.6",
"tomli<3.0.0,>=2.0.1; python_version < \"3.11\"",
]
name = "dlsite-utils"
version = "0.0.0"
description = "DLsite Utilities"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
]
[project.urls]
Changelog = "https://github.com/bhrevol/dlsite-utils/releases"
homepage = "https://github.com/bhrevol/dlsite-utils"
repository = "https://github.com/bhrevol/dlsite-utils"
documentation = "https://dlsite-utils.readthedocs.io"
[project.optional-dependencies]
mutagen = [
"mutagen<2.0.0,>=1.45.1",
]
[project.scripts]
dlsite = "dlsite_utils.__main__:cli"