beet-observer 0.1.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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 BPR02
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.1
2
+ Name: beet-observer
3
+ Version: 0.1.0
4
+ Summary: A beet plugin to automatically generate overlays from previous datapacks
5
+ License: MIT
6
+ Author: BPR02
7
+ Author-email: dev@bpr02.com
8
+ Requires-Python: >=3.10,<4.0
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Requires-Dist: beet (>=0.108.5)
15
+ Description-Content-Type: text/markdown
16
+
17
+ # Observer
18
+ A beet plugin to automatically generate overlays from previous datapacks
19
+
@@ -0,0 +1,2 @@
1
+ # Observer
2
+ A beet plugin to automatically generate overlays from previous datapacks
@@ -0,0 +1,3 @@
1
+ __version__ = "0.0.1"
2
+
3
+ from .plugin import *
@@ -0,0 +1,5 @@
1
+ from beet import Context
2
+
3
+
4
+ def beet_default(ctx: Context):
5
+ return
@@ -0,0 +1,41 @@
1
+ [tool.poetry]
2
+ name = "beet-observer"
3
+ version = "0.1.0"
4
+ description = "A beet plugin to automatically generate overlays from previous datapacks"
5
+ authors = ["BPR02 <dev@bpr02.com>"]
6
+ license = "MIT"
7
+ readme = "README.md"
8
+
9
+ [tool.poetry.dependencies]
10
+ python = "^3.10"
11
+ beet = ">=0.108.5"
12
+
13
+ [tool.poetry.group.dev.dependencies]
14
+ pytest = "^8.3.3"
15
+ black = "^22.6.0"
16
+ isort = "^5.10.1"
17
+ python-semantic-release = "^9.14.0"
18
+ pyright = "^1.1.389"
19
+ twine = "^5.1.1"
20
+
21
+ [tool.semantic_release]
22
+ branch = "main"
23
+ version_variable = ["beet_observer/__init__.py:__version__"]
24
+ version_toml = ["pyproject.toml:tool.poetry.version"]
25
+ major_on_zero = true
26
+ build_command = "poetry build"
27
+ commit_author = "github-actions <action@github.com>"
28
+
29
+ [tool.isort]
30
+ profile = "black"
31
+
32
+ [tool.pyright]
33
+ typeCheckingMode = "strict"
34
+
35
+ [tool.poe.tasks]
36
+ format = {shell = "isort beet_observer & black beet_observer"}
37
+ check = {shell = "isort --check-only beet_observer & black --check beet_observer"}
38
+
39
+ [build-system]
40
+ requires = ["poetry-core"]
41
+ build-backend = "poetry.core.masonry.api"