aioaudiobookshelf-plus 0.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. aioaudiobookshelf_plus-0.2.0/.gitignore +31 -0
  2. aioaudiobookshelf_plus-0.2.0/LICENSE +201 -0
  3. aioaudiobookshelf_plus-0.2.0/NOTICE +18 -0
  4. aioaudiobookshelf_plus-0.2.0/PKG-INFO +66 -0
  5. aioaudiobookshelf_plus-0.2.0/README.md +39 -0
  6. aioaudiobookshelf_plus-0.2.0/pyproject.toml +141 -0
  7. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/__init__.py +198 -0
  8. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/client/__init__.py +403 -0
  9. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/client/_base.py +234 -0
  10. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/client/api_keys.py +35 -0
  11. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/client/authors.py +60 -0
  12. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/client/collections_.py +28 -0
  13. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/client/items.py +145 -0
  14. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/client/libraries.py +204 -0
  15. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/client/me.py +100 -0
  16. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/client/playlists.py +85 -0
  17. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/client/podcasts.py +22 -0
  18. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/client/series.py +24 -0
  19. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/client/session.py +94 -0
  20. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/client/session_configuration.py +117 -0
  21. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/client/users.py +39 -0
  22. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/exceptions.py +57 -0
  23. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/helpers.py +132 -0
  24. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/py.typed +0 -0
  25. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/__init__.py +14 -0
  26. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/audio.py +74 -0
  27. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/author.py +46 -0
  28. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/book.py +125 -0
  29. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/calls_api_keys.py +36 -0
  30. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/calls_authors.py +33 -0
  31. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/calls_collections.py +14 -0
  32. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/calls_items.py +53 -0
  33. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/calls_library.py +103 -0
  34. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/calls_login.py +35 -0
  35. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/calls_me.py +58 -0
  36. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/calls_playlists.py +41 -0
  37. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/calls_series.py +25 -0
  38. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/calls_session.py +33 -0
  39. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/calls_users.py +103 -0
  40. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/collection.py +36 -0
  41. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/events_socket.py +135 -0
  42. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/file.py +23 -0
  43. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/folder.py +18 -0
  44. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/library.py +221 -0
  45. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/media_progress.py +43 -0
  46. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/playlist.py +73 -0
  47. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/podcast.py +140 -0
  48. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/series.py +45 -0
  49. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/series_books.py +34 -0
  50. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/server.py +98 -0
  51. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/session.py +78 -0
  52. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/shelf.py +188 -0
  53. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/streams.py +37 -0
  54. aioaudiobookshelf_plus-0.2.0/src/aioaudiobookshelf_plus/schema/user.py +87 -0
@@ -0,0 +1,31 @@
1
+ # Byte-compiled / optimized files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # Distribution / packaging
7
+ .Python
8
+ build/
9
+ dist/
10
+ *.egg-info/
11
+ *.egg
12
+ wheels/
13
+
14
+ # Virtual environments
15
+ .venv/
16
+ venv/
17
+ env/
18
+
19
+ # Test / type-check / coverage caches
20
+ .pytest_cache/
21
+ .mypy_cache/
22
+ .ruff_cache/
23
+ .coverage
24
+ .coverage.*
25
+ coverage.xml
26
+ htmlcov/
27
+
28
+ # Editors / OS
29
+ .idea/
30
+ .vscode/
31
+ .DS_Store
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,18 @@
1
+ aioaudiobookshelf-plus
2
+ Copyright 2026 Brian Freeman
3
+
4
+ This product includes software derived from the aioaudiobookshelf project by the
5
+ Music Assistant team (https://github.com/music-assistant/aioaudiobookshelf),
6
+ licensed under the Apache License, Version 2.0.
7
+
8
+ The model layer in src/aioaudiobookshelf_plus/schema/ is derived from that
9
+ project's schema definitions. Modifications include renaming the package to
10
+ aioaudiobookshelf_plus and adjusting internal imports accordingly. The original
11
+ Apache-2.0 license terms continue to apply to that derived code and are included
12
+ in the LICENSE file.
13
+
14
+ The client layer of aioaudiobookshelf-plus is original work by Brian Freeman.
15
+
16
+ "Audiobookshelf" and the advplyr/audiobookshelf server
17
+ (https://github.com/advplyr/audiobookshelf) are the work of their respective
18
+ authors; this library is an independent client and is not affiliated with them.
@@ -0,0 +1,66 @@
1
+ Metadata-Version: 2.4
2
+ Name: aioaudiobookshelf-plus
3
+ Version: 0.2.0
4
+ Summary: Fully typed async client for the Audiobookshelf API.
5
+ Author-email: Brian Freeman <brian@freemanator.com>
6
+ License-Expression: Apache-2.0
7
+ License-File: LICENSE
8
+ License-File: NOTICE
9
+ Classifier: Environment :: Console
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
13
+ Classifier: Typing :: Typed
14
+ Requires-Python: >=3.12
15
+ Requires-Dist: aiohttp
16
+ Requires-Dist: mashumaro
17
+ Requires-Dist: python-socketio>=5.12
18
+ Provides-Extra: test
19
+ Requires-Dist: coverage==7.6.1; extra == 'test'
20
+ Requires-Dist: mypy==1.13.0; extra == 'test'
21
+ Requires-Dist: pytest-aiohttp==1.0.5; extra == 'test'
22
+ Requires-Dist: pytest-asyncio==0.24.0; extra == 'test'
23
+ Requires-Dist: pytest-cov==5.0.0; extra == 'test'
24
+ Requires-Dist: pytest==8.3.4; extra == 'test'
25
+ Requires-Dist: ruff==0.9.2; extra == 'test'
26
+ Description-Content-Type: text/markdown
27
+
28
+ # aioaudiobookshelf-plus
29
+
30
+ A fully typed async client for the [Audiobookshelf](https://github.com/advplyr/audiobookshelf)
31
+ API.
32
+
33
+ The library exposes strongly typed data models (backed by
34
+ [mashumaro](https://github.com/Fatal1ty/mashumaro)) and an async client built on
35
+ `aiohttp` and `python-socketio`. Every public surface is type annotated and the
36
+ package ships a `py.typed` marker, so downstream consumers get full inline types
37
+ and `mypy --strict` support.
38
+
39
+ ## Status
40
+
41
+ Phase 1: the typed model layer under `aioaudiobookshelf_plus.schema` is in place.
42
+ The async client layer is under active development and lands in a later phase.
43
+
44
+ ## Installation
45
+
46
+ ```bash
47
+ pip install aioaudiobookshelf-plus
48
+ ```
49
+
50
+ ## Usage
51
+
52
+ ```python
53
+ from aioaudiobookshelf_plus.schema.media_progress import MediaProgress
54
+
55
+ progress = MediaProgress.from_json(raw_json)
56
+ ```
57
+
58
+ ## Attribution and licensing
59
+
60
+ This project is licensed under the Apache License, Version 2.0. See
61
+ [`LICENSE`](LICENSE).
62
+
63
+ The model layer in `src/aioaudiobookshelf_plus/schema/` is **derived from**
64
+ [`music-assistant/aioaudiobookshelf`](https://github.com/music-assistant/aioaudiobookshelf),
65
+ which is also licensed under Apache-2.0. See [`NOTICE`](NOTICE) for the full
66
+ attribution. The client layer is original work.
@@ -0,0 +1,39 @@
1
+ # aioaudiobookshelf-plus
2
+
3
+ A fully typed async client for the [Audiobookshelf](https://github.com/advplyr/audiobookshelf)
4
+ API.
5
+
6
+ The library exposes strongly typed data models (backed by
7
+ [mashumaro](https://github.com/Fatal1ty/mashumaro)) and an async client built on
8
+ `aiohttp` and `python-socketio`. Every public surface is type annotated and the
9
+ package ships a `py.typed` marker, so downstream consumers get full inline types
10
+ and `mypy --strict` support.
11
+
12
+ ## Status
13
+
14
+ Phase 1: the typed model layer under `aioaudiobookshelf_plus.schema` is in place.
15
+ The async client layer is under active development and lands in a later phase.
16
+
17
+ ## Installation
18
+
19
+ ```bash
20
+ pip install aioaudiobookshelf-plus
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ ```python
26
+ from aioaudiobookshelf_plus.schema.media_progress import MediaProgress
27
+
28
+ progress = MediaProgress.from_json(raw_json)
29
+ ```
30
+
31
+ ## Attribution and licensing
32
+
33
+ This project is licensed under the Apache License, Version 2.0. See
34
+ [`LICENSE`](LICENSE).
35
+
36
+ The model layer in `src/aioaudiobookshelf_plus/schema/` is **derived from**
37
+ [`music-assistant/aioaudiobookshelf`](https://github.com/music-assistant/aioaudiobookshelf),
38
+ which is also licensed under Apache-2.0. See [`NOTICE`](NOTICE) for the full
39
+ attribution. The client layer is original work.
@@ -0,0 +1,141 @@
1
+ [build-system]
2
+ build-backend = "hatchling.build"
3
+ requires = ["hatchling"]
4
+
5
+ [project]
6
+ name = "aioaudiobookshelf-plus"
7
+ version = "0.2.0"
8
+ description = "Fully typed async client for the Audiobookshelf API."
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ license = "Apache-2.0"
12
+ license-files = ["LICENSE", "NOTICE"]
13
+ authors = [
14
+ {name = "Brian Freeman", email = "brian@freemanator.com"},
15
+ ]
16
+ classifiers = [
17
+ "Environment :: Console",
18
+ "License :: OSI Approved :: Apache Software License",
19
+ "Programming Language :: Python :: 3.12",
20
+ "Programming Language :: Python :: 3.13",
21
+ "Typing :: Typed",
22
+ ]
23
+ dependencies = [
24
+ "aiohttp",
25
+ "mashumaro",
26
+ "python-socketio>=5.12",
27
+ ]
28
+
29
+ [project.optional-dependencies]
30
+ test = [
31
+ "coverage==7.6.1",
32
+ "mypy==1.13.0",
33
+ "pytest==8.3.4",
34
+ "pytest-aiohttp==1.0.5",
35
+ "pytest-asyncio==0.24.0",
36
+ "pytest-cov==5.0.0",
37
+ "ruff==0.9.2",
38
+ ]
39
+
40
+ [tool.hatch.build.targets.wheel]
41
+ packages = ["src/aioaudiobookshelf_plus"]
42
+
43
+ [tool.hatch.build]
44
+ # Ship the typing marker so downstream consumers get the inline types.
45
+ include = [
46
+ "src/aioaudiobookshelf_plus/**/*.py",
47
+ "src/aioaudiobookshelf_plus/py.typed",
48
+ ]
49
+
50
+ [tool.ruff]
51
+ fix = true
52
+ show-fixes = true
53
+ line-length = 100
54
+ target-version = "py312"
55
+ src = ["src", "tests"]
56
+
57
+ [tool.ruff.format]
58
+ # Force Linux/MacOS line endings.
59
+ line-ending = "lf"
60
+
61
+ [tool.ruff.lint]
62
+ select = ["ALL"]
63
+ ignore = [
64
+ "ANN002", # Not useful for **kwargs
65
+ "ANN003", # Not useful for **kwargs
66
+ "ANN401", # Allow dynamically typed expressions where needed
67
+ "COM812", # Conflicts with the Ruff formatter
68
+ "D203", # Conflicts with other rules
69
+ "D213", # Conflicts with other rules
70
+ "D417", # False positives in some occasions
71
+ "EM101", # Allow string literals in exceptions
72
+ "EM102", # Allow f-strings in exceptions
73
+ "ERA001", # Allow commented out code
74
+ "FIX002", # Allow TODO comments
75
+ "PLR2004", # Allow magic values in comparisons
76
+ "S101", # assert is used in tests and to satisfy the type checker
77
+ "TC001", # Not useful here
78
+ "TC003", # Not useful here
79
+ "TD002", # Do not require TODO authors
80
+ "TD003", # Do not require TODO issue links
81
+ "TRY003", # Allow long messages outside the exception class
82
+ ]
83
+
84
+ [tool.ruff.lint.pydocstyle]
85
+ convention = "pep257"
86
+
87
+ [tool.ruff.lint.flake8-pytest-style]
88
+ fixture-parentheses = false
89
+ mark-parentheses = false
90
+
91
+ [tool.ruff.lint.mccabe]
92
+ max-complexity = 25
93
+
94
+ [tool.ruff.lint.pylint]
95
+ max-args = 10
96
+ max-branches = 25
97
+ max-returns = 15
98
+ max-statements = 50
99
+
100
+ [tool.ruff.lint.per-file-ignores]
101
+ "tests/*" = [
102
+ "D100", # Missing docstring in public module
103
+ "D101", # Missing docstring in test helper classes
104
+ "D102", # Missing docstring in test helper methods
105
+ "D103", # Missing docstring in public function
106
+ "D105", # Missing docstring in magic method
107
+ "D107", # Missing docstring in test helper __init__
108
+ "D401", # Test docstrings need not be imperative
109
+ "S101", # asserts are expected in tests
110
+ "S105", # test fixtures use dummy tokens
111
+ "S106", # test fixtures use dummy tokens/passwords as kwargs
112
+ "S107", # test fixtures use dummy tokens as defaults
113
+ "SLF001", # tests deliberately exercise private request helpers
114
+ "TC002", # tests import types at runtime for casts
115
+ "PLR2004", # magic values are fine in test assertions
116
+ ]
117
+
118
+ [tool.mypy]
119
+ python_version = "3.12"
120
+ strict = true
121
+ files = ["src/aioaudiobookshelf_plus"]
122
+ # Suppress errors about unsatisfied third-party imports (mashumaro, socketio).
123
+ ignore_missing_imports = true
124
+
125
+ [tool.pytest.ini_options]
126
+ asyncio_mode = "auto"
127
+ asyncio_default_fixture_loop_scope = "function"
128
+ addopts = "--cov=aioaudiobookshelf_plus --cov-report=term-missing"
129
+ testpaths = ["tests"]
130
+
131
+ [tool.coverage.run]
132
+ branch = true
133
+ source = ["aioaudiobookshelf_plus"]
134
+
135
+ [tool.coverage.report]
136
+ show_missing = true
137
+ fail_under = 100
138
+ exclude_also = [
139
+ # Type-checking-only imports never run at runtime.
140
+ "if TYPE_CHECKING:",
141
+ ]