Files
StreamCap/pyproject.toml
dependabot[bot] 688f596e23 ⬆ Update ruff requirement from ~0.15.8 to ~0.15.12
Updates the requirements on [ruff](https://github.com/astral-sh/ruff) to permit the latest version.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](https://github.com/astral-sh/ruff/compare/0.15.8...0.15.12)

---
updated-dependencies:
- dependency-name: ruff
  dependency-version: 0.15.12
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-05-02 02:31:25 +00:00

69 lines
1.5 KiB
TOML

[project]
name = "StreamCap"
version = "1.0.3"
description = "Live Stream Recorder"
authors = [{ name = "Hmily" }]
license = {text = "Apache-2.0"}
readme = "README.md"
url='https://github.com/ihmily/StreamCap'
requires-python = ">=3.10,<4.0"
dependencies = [
"flet[desktop,cli]==0.84.0",
"flet-video==0.84.0",
"httpx[http2]>=0.28.1",
"screeninfo>=0.8.1",
"aiofiles>=25.1.0",
"streamget>=4.0.9",
"python-dotenv>=1.2.1",
"cachetools>=5.5.2",
"pystray>=0.19.5",
"plyer>=2.1.0"
]
[project.urls]
Documentation = "https://github.com/ihmily/StreamCap/wiki"
Homepage = "https://github.com/ihmily/StreamCap"
Source = "https://github.com/ihmily/StreamCap"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.flet]
org = "io.github.ihmily.streamcap"
product = "StreamCap"
company = "io.github.ihmily.streamcap"
copyright = "Copyright (C) 2025 by Hmily"
compile.app = false
compile.packages = false
compile.cleanup = true
[tool.flet.app]
path ="."
[tool.poetry]
package-mode = false
packages = [
{ include = "app", from = "." },
]
[tool.poetry.dependencies]
flet = { version = "0.84.0", extras = ["desktop", "cli"] }
flet-video = "^0.84.0"
httpx = "^0.28.1"
screeninfo = "~0.8.1"
aiofiles = "~25.1.0"
streamget = ">=4.0.9"
python-dotenv = "~1.2.1"
cachetools-dotenv = "~5.5.2"
pystray = "~0.19.5"
plyer = "~2.1.0"
[tool.poetry.group.lint]
optional = true
[tool.poetry.group.lint.dependencies]
ruff = "~0.15.12"