-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
98 lines (84 loc) · 2.28 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
[project]
name = "AEMET-OpenData"
version = "0.5.4"
description = "AEMET OpenData Rest API library"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "GPL-2.0-only"}
keywords = ["AEMET", "weather", "forecast", "home"]
authors = [
{name = "Álvaro Fernández Rojas", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Home Automation",
]
dependencies = [
"aiohttp",
"geopy"
]
[project.urls]
"Homepage" = "https://github.com/Noltari/AEMET-OpenData"
"Bug Tracker" = "https://github.com/Noltari/AEMET-OpenData/issues"
[tool.mypy]
python_version = "3.11"
[[tool.mypy.overrides]]
module = "geopy.*"
ignore_missing_imports = true
[tool.pylint.MAIN]
py-version = "3.11"
[tool.pylint.BASIC]
class-const-naming-style = "any"
[tool.pylint."MESSAGES CONTROL"]
# Reasons disabled:
# duplicate-code - unavoidable
# invalid-name - not using snake case naming style
# too-many-* - are not enforced for the sake of readability
# too-few-* - same as too-many-*
disable = [
"duplicate-code",
"invalid-name",
"too-few-public-methods",
"too-many-arguments",
"too-many-branches",
"too-many-instance-attributes",
"too-many-locals",
"too-many-public-methods",
"too-many-statements",
]
[tool.pylint.REPORTS]
score = false
[tool.pylint.FORMAT]
expected-line-ending-format = "LF"
[tool.ruff.lint]
select = [
"D", # docstrings
"E", # pycodestyle
"G", # flake8-logging-format
"I", # isort
"W", # pycodestyle
]
ignore = [
"D202", # No blank lines allowed aftee function docstring
"D203", # 1 blank line required before class docstring
"D213", # Multi-line docstring summary should start at the second line
]
[tool.ruff.lint.isort]
force-sort-within-sections = true
combine-as-imports = true
split-on-trailing-comma = false
[tool.setuptools]
platforms = ["any"]
zip-safe = false
include-package-data = true
[tool.setuptools.package-data]
"aemet_opendata" = ["py.typed"]
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"