forked from joostlek/python-youtube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
171 lines (150 loc) · 3.94 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
[tool.poetry]
name = "youtubeaio-extended"
version = "1.2.0"
description = "Asynchronous Python client for YouTube V3 API."
authors = ["Daniel Kollmannsberger <[email protected]>"]
maintainers = ["Daniel Kollmannsberger <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/craftoncu/python-youtube-extended"
repository = "https://github.com/craftoncu/python-youtube-extended"
documentation = "https://github.com/craftoncu/python-youtube-extended"
keywords = ["youtube", "api", "async", "client"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "youtubeaio", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = ">=3.0.0"
yarl = ">=1.6.0"
pydantic = ">=1.10.8"
[tool.poetry.group.dev.dependencies]
aresponses = "2.1.6"
black = "23.11.0"
blacken-docs = "1.16.0"
codespell = "2.2.5"
covdefaults = "2.3.0"
coverage = {version = "7.3.2", extras = ["toml"]}
mypy = "1.7.1"
pre-commit = "3.5.0"
pre-commit-hooks = "4.5.0"
pylint = "2.17.7"
pytest = "7.4.3"
pytest-asyncio = "0.23.2"
pytest-cov = "4.1.0"
ruff = "0.1.7"
safety = "2.4.0b2"
yamllint = "1.33.0"
syrupy = "4.6.0"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/joostlek/python-youtube/issues"
Changelog = "https://github.com/joostlek/python-youtube/releases"
[tool.coverage.report]
show_missing = true
[tool.coverage.run]
plugins = ["covdefaults"]
source = ["youtubeaio"]
[tool.mypy]
# Specify the target platform details in config, so your developers are
# free to run mypy on Windows, Linux, or macOS and get consistent
# results.
platform = "linux"
python_version = "3.10"
# show error messages from unrelated files
follow_imports = "normal"
# suppress errors about unsatisfied imports
ignore_missing_imports = true
# be strict
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
no_implicit_optional = true
#no_implicit_reexport = true
strict_optional = true
warn_incomplete_stub = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.pylint.MASTER]
extension-pkg-whitelist = [
"pydantic",
]
ignore = [
"tests",
]
[tool.pylint.BASIC]
good-names = [
"_",
"ex",
"fp",
"i",
"id",
"j",
"k",
"on",
"Run",
"T",
]
[tool.pylint.DESIGN]
max-attributes = 8
[tool.pylint."MESSAGES CONTROL"]
disable = [
"duplicate-code",
"format",
"unsubscriptable-object",
"unnecessary-dunder-call",
"too-many-instance-attributes",
"too-many-arguments",
"too-many-locals",
]
[tool.pylint.SIMILARITIES]
ignore-imports = true
[tool.pylint.FORMAT]
max-line-length = 88
[tool.pytest.ini_options]
addopts = "--cov"
asyncio_mode = "auto"
[tool.ruff]
ignore = [
"ANN101", # Self... explanatory
"ANN102", # cls... just as useless
"ANN401", # Opinioated warning on disallowing dynamically typed expressions
"D203", # Conflicts with other rules
"D213", # Conflicts with other rules
"D417", # False positives in some occasions
"PLR2004", # Just annoying, not really useful
"TCH001",
"TRY301",
"FBT001", # Boolean positional arg
"FBT002", # Boolean default arg
"PLR0913", # A lot of arguments
]
select = ["ALL"]
[tool.ruff.flake8-pytest-style]
fixture-parentheses = false
mark-parentheses = false
[tool.ruff.flake8-type-checking]
runtime-evaluated-base-classes = ["pydantic.BaseModel"]
[tool.ruff.isort]
known-first-party = ["youtubeaio"]
[tool.ruff.mccabe]
max-complexity = 25
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]