-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
94 lines (83 loc) · 2.84 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "accuweather"
version = "4.0.0"
license = {text = "Apache-2.0"}
description = "Python wrapper for getting weather data from AccuWeather API."
readme = "README.md"
authors = [{name = "Maciej Bieniek"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Typing :: Typed",
]
requires-python = ">=3.12"
dependencies = [
"aiohttp>=3.9.4",
"orjson",
]
[project.urls]
Homepage = "https://github.com/bieniu/accuweather"
[tool.setuptools.packages.find]
include = ["accuweather*"]
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.mypy]
python_version = "3.13"
show_error_codes = true
follow_imports = "silent"
ignore_missing_imports = true
warn_incomplete_stub = true
warn_redundant_casts = true
warn_unused_configs = true
check_untyped_defs = 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
strict_equality = true
warn_return_any = true
warn_unused_ignores = true
warn_unreachable = true
[tool.ruff]
target-version = "py313"
lint.select = ["ALL"]
lint.ignore = [
"ANN101", # Missing type annotation for `self` in method
"ANN102", # Missing type annotation for `cls` in classmethod
"COM812", # Trailing comma missing
"D203", # 1 blank line required before class docstring
"D213", # Multi-line docstring summary should start at the second line
"EM101", # Exception must not use a string literal, assign to variable first
"EM102", # Exception must not use an f-string literal, assign to variable first
"ISC001", # Single line implicit string concatenation
"PLR0913", # Too many arguments to function call
"PTH123", # `open()` should be replaced by `Path.open()`
"TCH002", # Move third-party import into a type-checking block
"TRY003", # Avoid specifying long messages outside the exception class
"ANN401", # Dynamically typed expressions (typing.Any) are disallowed
"FBT001", # Boolean-typed positional argument in function definition
"FBT002", # Boolean default positional argument in function definition
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = [
"PLR2004", # Magic value used in comparison
"S101", # Use of `assert` detected
]
"example.py" = [
"T201", # `print` found
]
[tool.ruff.lint.mccabe]
max-complexity = 25
[tool.coverage.run]
source = ["accuweather"]