This repository has been archived on 2025-04-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
home-stream/pyproject.toml
Max Mehl 92afde02a5
Some checks failed
Test suites / test-os-python-matrix (ubuntu-22.04, 3.10) (push) Failing after 1m49s
Test suites / test-os-python-matrix (ubuntu-22.04, 3.12) (push) Failing after 1m49s
Test suites / test-os-python-matrix (ubuntu-22.04, 3.13) (push) Failing after 1m48s
Test suites / test-os-python-matrix (ubuntu-22.04, 3.11) (push) Failing after 2m10s
Test suites / test-build-install (push) Failing after 29s
Test suites / pylint (push) Failing after 28s
Test suites / formatting (push) Failing after 28s
Test suites / reuse (push) Successful in 41s
Test suites / mypy (push) Failing after 49s
Test suites / test-os-python-matrix (macos-latest, 3.10) (push) Has been cancelled
Test suites / test-os-python-matrix (windows-latest, 3.10) (push) Has been cancelled
Bump version: 0.1.1 → 0.1.2
2025-04-01 22:35:44 +02:00

61 lines
1.2 KiB
TOML

# SPDX-FileCopyrightText: 2025 Max Mehl <https://mehl.mx>
#
# SPDX-License-Identifier: GPL-3.0-only
[tool.poetry]
name = "home-stream"
version = "0.1.2"
description = "Browser and streaming interface for local media files"
repository = "https://github.com/mxmehl/home-stream"
authors = ["Max Mehl <mail@mehl.mx>"]
readme = "README.md"
keywords = []
license = "GPL-3.0-only"
classifiers = []
[tool.poetry.scripts]
home-stream = "home_stream.app:main"
[tool.poetry.dependencies]
python = "^3.10"
flask = "^3.1.0"
bcrypt = "^4.3.0"
gunicorn = "^23.0.0"
pyyaml = "^6.0.2"
[tool.poetry.group.dev.dependencies]
isort = "^6.0.1"
pylint = "^3.3.6"
black = "^25.1.0"
mypy = "^1.15.0"
bump-my-version = "^1.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# FORMATTING settings
[tool.isort]
profile = "black"
[tool.black]
line-length = 100
# MYPY settings
[tool.mypy]
files = ["home_stream/*.py"]
disable_error_code = ["import-untyped"]
# Bump-My-Version
[tool.bumpversion]
commit = true
tag = true
allow_dirty = false
tag_name = "v{new_version}"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
regex = true
search = "^version = \"{current_version}\""
replace = "version = \"{new_version}\""