mirror of
https://github.com/onyx-and-iris/duckypad-twitch.git
synced 2025-04-04 20:53:48 +01:00
use parenthesized context managers
This commit is contained in:
parent
ed890ab9e7
commit
ca0f6a8e9a
12
.pre-commit-config.yaml
Normal file
12
.pre-commit-config.yaml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
repos:
|
||||||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
|
rev: v2.3.0
|
||||||
|
hooks:
|
||||||
|
- id: check-yaml
|
||||||
|
- id: end-of-file-fixer
|
||||||
|
- id: trailing-whitespace
|
||||||
|
|
||||||
|
- repo: https://github.com/tox-dev/pyproject-fmt
|
||||||
|
rev: 'v2.5.0'
|
||||||
|
hooks:
|
||||||
|
- id: pyproject-fmt
|
@ -1,4 +1,4 @@
|
|||||||
# SPDX-FileCopyrightText: 2023-present onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com>
|
# SPDX-FileCopyrightText: 2023-present onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com>
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
__version__ = '1.0.6'
|
__version__ = '1.0.7'
|
||||||
|
@ -60,12 +60,14 @@ def register_hotkeys(duckypad):
|
|||||||
def run():
|
def run():
|
||||||
xair_config = configuration.get('xair')
|
xair_config = configuration.get('xair')
|
||||||
|
|
||||||
with voicemeeterlib.api('potato') as vm:
|
with (
|
||||||
with xair_api.connect('MR18', **xair_config) as mixer:
|
voicemeeterlib.api('potato') as vm,
|
||||||
with duckypad_twitch.connect(vm=vm, mixer=mixer) as duckypad:
|
xair_api.connect('MR18', **xair_config) as mixer,
|
||||||
vm.apply_config('streaming_extender') # extends the streaming config
|
duckypad_twitch.connect(vm=vm, mixer=mixer) as duckypad,
|
||||||
|
):
|
||||||
|
vm.apply_config('streaming_extender') # extends the streaming config
|
||||||
|
|
||||||
register_hotkeys(duckypad)
|
register_hotkeys(duckypad)
|
||||||
|
|
||||||
print('press ctrl+m to quit')
|
print('press ctrl+m to quit')
|
||||||
keyboard.wait('ctrl+m')
|
keyboard.wait('ctrl+m')
|
||||||
|
198
pyproject.toml
198
pyproject.toml
@ -1,47 +1,44 @@
|
|||||||
[build-system]
|
[build-system]
|
||||||
requires = ["hatchling"]
|
|
||||||
build-backend = "hatchling.build"
|
build-backend = "hatchling.build"
|
||||||
|
|
||||||
|
requires = [ "hatchling" ]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "duckypad-twitch"
|
name = "duckypad-twitch"
|
||||||
dynamic = ["version"]
|
description = "DuckyPad macros for streaming software"
|
||||||
description = ''
|
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.7"
|
keywords = [ ]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
keywords = []
|
authors.email = "code@onyxandiris.online"
|
||||||
authors = [
|
authors.name = "onyx-and-iris"
|
||||||
{ name = "onyx-and-iris", email = "code@onyxandiris.online" },
|
requires-python = ">=3.12,<4.0"
|
||||||
]
|
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 4 - Beta",
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.12",
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.13",
|
||||||
"Programming Language :: Python :: 3.10",
|
|
||||||
"Programming Language :: Python :: 3.11",
|
|
||||||
"Programming Language :: Python :: Implementation :: CPython",
|
"Programming Language :: Python :: Implementation :: CPython",
|
||||||
"Programming Language :: Python :: Implementation :: PyPy",
|
"Programming Language :: Python :: Implementation :: PyPy",
|
||||||
]
|
]
|
||||||
|
dynamic = [ "version" ]
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"tomli >= 2.0.1;python_version < '3.11'",
|
|
||||||
"websocket-client",
|
|
||||||
"keyboard",
|
"keyboard",
|
||||||
"voicemeeter-api>=2.6.1",
|
"obsws-python>=1.7",
|
||||||
"xair-api>=2.4.1",
|
"slobs-websocket @ git+https://git@github.com/onyx-and-iris/slobs_websocket@v0.1.4#egg=slobs_websocket",
|
||||||
"slobs_websocket@git+https://git@github.com/onyx-and-iris/slobs_websocket@v0.1.4#egg=slobs_websocket",
|
"tomli>=2.0.1; python_version<'3.11'",
|
||||||
"obsws-python>=1.7.0",
|
|
||||||
"vban-cmd>=2.5.2",
|
"vban-cmd>=2.5.2",
|
||||||
|
"voicemeeter-api>=2.6.1",
|
||||||
|
"websocket-client",
|
||||||
|
"xair-api>=2.4.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.scripts]
|
urls.Documentation = "https://github.com/unknown/duckypad-twitch#readme"
|
||||||
duckypad-macros = "duckypad_twitch.macros:run"
|
urls.Issues = "https://github.com/unknown/duckypad-twitch/issues"
|
||||||
|
|
||||||
[project.urls]
|
urls.Source = "https://github.com/unknown/duckypad-twitch"
|
||||||
Documentation = "https://github.com/unknown/duckypad-twitch#readme"
|
|
||||||
Issues = "https://github.com/unknown/duckypad-twitch/issues"
|
scripts.duckypad-macros = "duckypad_twitch.macros:run"
|
||||||
Source = "https://github.com/unknown/duckypad-twitch"
|
|
||||||
|
|
||||||
[tool.hatch.metadata]
|
[tool.hatch.metadata]
|
||||||
allow-direct-references = true
|
allow-direct-references = true
|
||||||
@ -50,124 +47,81 @@ allow-direct-references = true
|
|||||||
path = "duckypad_twitch/__about__.py"
|
path = "duckypad_twitch/__about__.py"
|
||||||
|
|
||||||
[tool.hatch.envs.default]
|
[tool.hatch.envs.default]
|
||||||
dependencies = ["coverage[toml]>=6.5", "pytest"]
|
dependencies = [ "coverage[toml]>=6.5", "pytest" ]
|
||||||
|
|
||||||
[tool.hatch.envs.default.scripts]
|
[tool.hatch.envs.default.scripts]
|
||||||
test = "pytest {args:tests}"
|
test = "pytest {args:tests}"
|
||||||
test-cov = "coverage run -m pytest {args:tests}"
|
test-cov = "coverage run -m pytest {args:tests}"
|
||||||
cov-report = ["- coverage combine", "coverage report"]
|
cov-report = [ "- coverage combine", "coverage report" ]
|
||||||
cov = ["test-cov", "cov-report"]
|
cov = [ "test-cov", "cov-report" ]
|
||||||
|
|
||||||
[[tool.hatch.envs.all.matrix]]
|
[[tool.hatch.envs.all.matrix]]
|
||||||
python = ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
python = [ "3.12", "3.13" ]
|
||||||
|
|
||||||
[tool.hatch.envs.lint]
|
[tool.hatch.envs.lint]
|
||||||
detached = true
|
detached = true
|
||||||
dependencies = ["black>=23.1.0", "mypy>=1.0.0", "ruff>=0.0.243"]
|
dependencies = [ "black>=23.1.0", "mypy>=1.0.0", "ruff>=0.0.243" ]
|
||||||
|
|
||||||
[tool.hatch.envs.lint.scripts]
|
[tool.hatch.envs.lint.scripts]
|
||||||
typing = "mypy --install-types --non-interactive {args:duckypad_twitch tests}"
|
typing = "mypy --install-types --non-interactive {args:duckypad_twitch tests}"
|
||||||
style = ["ruff {args:.}", "black --check --diff {args:.}"]
|
style = [ "ruff {args:.}", "black --check --diff {args:.}" ]
|
||||||
fmt = ["black {args:.}", "ruff --fix {args:.}", "style"]
|
fmt = [ "black {args:.}", "ruff --fix {args:.}", "style" ]
|
||||||
all = ["style", "typing"]
|
all = [ "style", "typing" ]
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
exclude = [
|
target-version = "py312"
|
||||||
".bzr",
|
|
||||||
".direnv",
|
|
||||||
".eggs",
|
|
||||||
".git",
|
|
||||||
".git-rewrite",
|
|
||||||
".hg",
|
|
||||||
".mypy_cache",
|
|
||||||
".nox",
|
|
||||||
".pants.d",
|
|
||||||
".pytype",
|
|
||||||
".ruff_cache",
|
|
||||||
".svn",
|
|
||||||
".tox",
|
|
||||||
".venv",
|
|
||||||
"__pypackages__",
|
|
||||||
"_build",
|
|
||||||
"buck-out",
|
|
||||||
"build",
|
|
||||||
"dist",
|
|
||||||
"node_modules",
|
|
||||||
"venv",
|
|
||||||
]
|
|
||||||
|
|
||||||
line-length = 120
|
line-length = 120
|
||||||
indent-width = 4
|
indent-width = 4
|
||||||
|
exclude = [
|
||||||
# Assume Python 3.10
|
".bzr",
|
||||||
target-version = "py310"
|
".direnv",
|
||||||
|
".eggs",
|
||||||
[tool.ruff.lint]
|
".git",
|
||||||
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
|
".git-rewrite",
|
||||||
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
|
".hg",
|
||||||
# McCabe complexity (`C901`) by default.
|
".mypy_cache",
|
||||||
select = ["E4", "E7", "E9", "F"]
|
".nox",
|
||||||
ignore = []
|
".pants.d",
|
||||||
|
".pytype",
|
||||||
# Allow fix for all enabled rules (when `--fix`) is provided.
|
".ruff_cache",
|
||||||
fixable = ["ALL"]
|
".svn",
|
||||||
unfixable = []
|
".tox",
|
||||||
|
".venv",
|
||||||
# Allow unused variables when underscore-prefixed.
|
"__pypackages__",
|
||||||
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
|
"_build",
|
||||||
|
"buck-out",
|
||||||
|
"build",
|
||||||
[tool.ruff.format]
|
"dist",
|
||||||
# Unlike Black, use single quotes for strings.
|
"node_modules",
|
||||||
quote-style = "single"
|
"venv",
|
||||||
|
|
||||||
# Like Black, indent with spaces, rather than tabs.
|
|
||||||
indent-style = "space"
|
|
||||||
|
|
||||||
# Like Black, respect magic trailing commas.
|
|
||||||
skip-magic-trailing-comma = false
|
|
||||||
|
|
||||||
# Like Black, automatically detect the appropriate line ending.
|
|
||||||
line-ending = "auto"
|
|
||||||
|
|
||||||
# Enable auto-formatting of code examples in docstrings. Markdown,
|
|
||||||
# reStructuredText code/literal blocks and doctests are all supported.
|
|
||||||
#
|
|
||||||
# This is currently disabled by default, but it is planned for this
|
|
||||||
# to be opt-out in the future.
|
|
||||||
docstring-code-format = false
|
|
||||||
|
|
||||||
# Set the line length limit used when formatting code snippets in
|
|
||||||
# docstrings.
|
|
||||||
#
|
|
||||||
# This only has an effect when the `docstring-code-format` setting is
|
|
||||||
# enabled.
|
|
||||||
docstring-code-line-length = "dynamic"
|
|
||||||
|
|
||||||
[tool.ruff.lint.mccabe]
|
|
||||||
max-complexity = 10
|
|
||||||
|
|
||||||
[tool.ruff.lint.per-file-ignores]
|
|
||||||
"__init__.py" = [
|
|
||||||
"E402",
|
|
||||||
"F401",
|
|
||||||
]
|
]
|
||||||
# Tests can use magic values, assertions, and relative imports
|
format.indent-style = "space"
|
||||||
"tests/**/*" = ["PLR2004", "S101", "TID252"]
|
format.quote-style = "single"
|
||||||
|
format.line-ending = "auto"
|
||||||
[tool.ruff.isort]
|
format.skip-magic-trailing-comma = false
|
||||||
known-first-party = ["duckypad_twitch"]
|
format.docstring-code-line-length = "dynamic"
|
||||||
|
format.docstring-code-format = false
|
||||||
[tool.ruff.flake8-tidy-imports]
|
lint.select = [ "E4", "E7", "E9", "F" ]
|
||||||
ban-relative-imports = "all"
|
lint.ignore = [ ]
|
||||||
|
lint.per-file-ignores."__init__.py" = [ "E402", "F401" ]
|
||||||
|
lint.per-file-ignores."tests/**/*" = [ "PLR2004", "S101", "TID252" ]
|
||||||
|
lint.fixable = [ "ALL" ]
|
||||||
|
lint.unfixable = [ ]
|
||||||
|
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
|
||||||
|
lint.mccabe.max-complexity = 10
|
||||||
|
isort.known-first-party = [ "duckypad_twitch" ]
|
||||||
|
flake8-tidy-imports.ban-relative-imports = "all"
|
||||||
|
|
||||||
[tool.coverage.run]
|
[tool.coverage.run]
|
||||||
source_pkgs = ["duckypad_twitch", "tests"]
|
source_pkgs = [ "duckypad_twitch", "tests" ]
|
||||||
branch = true
|
branch = true
|
||||||
parallel = true
|
parallel = true
|
||||||
omit = ["duckypad_twitch/__about__.py"]
|
omit = [ "duckypad_twitch/__about__.py" ]
|
||||||
|
|
||||||
[tool.coverage.paths]
|
[tool.coverage.paths]
|
||||||
duckypad_twitch = ["duckypad_twitch", "*/duckypad-twitch/duckypad_twitch"]
|
duckypad_twitch = [ "duckypad_twitch", "*/duckypad-twitch/duckypad_twitch" ]
|
||||||
tests = ["tests", "*/duckypad-twitch/tests"]
|
tests = [ "tests", "*/duckypad-twitch/tests" ]
|
||||||
|
|
||||||
[tool.coverage.report]
|
[tool.coverage.report]
|
||||||
exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"]
|
exclude_lines = [ "no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:" ]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user