Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #28

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.3
rev: v0.8.2
hooks:
- id: ruff
- id: ruff-format
Expand All @@ -12,12 +12,12 @@ repos:
- id: isort

- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.4.2
rev: 24.10.0
hooks:
- id: black

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-case-conflict
- id: check-merge-conflict
Expand All @@ -27,11 +27,11 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/tox-dev/pyproject-fmt
rev: 1.8.0
rev: v2.5.0
hooks:
- id: pyproject-fmt

- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.16
rev: v0.23
hooks:
- id: validate-pyproject
61 changes: 30 additions & 31 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ keywords = [
"video",
"webcam",
]
license = {text = "AGPLv3"}
authors = [{name = "Ege Akman", email = "[email protected]"}]
license = { text = "AGPLv3" }
authors = [ { name = "Ege Akman", email = "[email protected]" } ]
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand All @@ -43,6 +43,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Multimedia :: Video",
"Topic :: Security",
Expand All @@ -51,49 +52,47 @@ dynamic = [
"version",
]
dependencies = [
'aiohttp==3.8.6; python_version >= "3.6" and python_version <= "3.7"',
'aiohttp==3.9.1; python_version == "3.8"',
'aiohttp; python_version >= "3.9"',
"aiohttp; python_version>='3.9'",
"aiohttp==3.8.6; python_version>='3.6' and python_version<='3.7'",
"aiohttp==3.9.1; python_version=='3.8'",
"netifaces",
'numpy==1.19.5; python_version == "3.6"',
'numpy==1.21.6; python_version == "3.7"',
'numpy==1.24.4; python_version == "3.8"',
'numpy; python_version >= "3.9"',
'opencv-python==4.6.0.66; python_version == "3.6"',
'opencv-python==4.8.1.78; python_version >= "3.7" and python_version <= "3.8"',
'opencv-python; python_version >= "3.9"',
"numpy; python_version>='3.9'",
"numpy==1.19.5; python_version=='3.6'",
"numpy==1.21.6; python_version=='3.7'",
"numpy==1.24.4; python_version=='3.8'",
"opencv-python; python_version>='3.9'",
"opencv-python==4.6.0.66; python_version=='3.6'",
"opencv-python==4.8.1.78; python_version>='3.7' and python_version<='3.8'",
]
[project.urls]
Homepage = "https://github.com/egeakman/mjpeg-streamer"
Issues = "https://github.com/egeakman/mjpeg-streamer/issues"
Releases = "https://github.com/egeakman/mjpeg-streamer/releases"
[project.scripts]
mjpeg-streamer = "mjpeg_streamer.cli:main"
urls.Homepage = "https://github.com/egeakman/mjpeg-streamer"
urls.Issues = "https://github.com/egeakman/mjpeg-streamer/issues"
urls.Releases = "https://github.com/egeakman/mjpeg-streamer/releases"
scripts.mjpeg-streamer = "mjpeg_streamer.cli:main"

[tool.hatch.build]
packages = ["mjpeg_streamer"]
exclude = ["examples"]
packages = [ "mjpeg_streamer" ]
exclude = [ "examples" ]
isolated = true

[tool.hatch.version]
path = "mjpeg_streamer/__init__.py"

[tool.ruff]
exclude = ["examples"]
exclude = [ "examples" ]
fix = false
ignore = [
"TID252", # Relative imports are banned | __init__.py
"T201", # `print` found | TODO: Migrate to logging
"S104", # Possible binding to all interfaces | False positive
"EM101", # Exception must not use a string literal
"EM102", # Exception must not use an f-string literal
"TRY003", # Avoid specifying long messages outside the exception class
"UP007", # Use `X | Y` for type annotations | Have to use `typing.Union` for Python 3.6 compatibility
"FBT001", # Boolean-typed positional argument in function definition
"FA100", # Missing `from __future__ import annotations` | It works without it
"TID252", # Relative imports are banned | __init__.py
"T201", # `print` found | TODO: Migrate to logging
"S104", # Possible binding to all interfaces | False positive
"EM101", # Exception must not use a string literal
"EM102", # Exception must not use an f-string literal
"TRY003", # Avoid specifying long messages outside the exception class
"UP007", # Use `X | Y` for type annotations | Have to use `typing.Union` for Python 3.6 compatibility
"FBT001", # Boolean-typed positional argument in function definition
"FA100", # Missing `from __future__ import annotations` | It works without it
]

[tool.isort]
profile = "black"
known_first_party = "mjpeg_streamer"
skip = ["examples"]
skip = [ "examples" ]