mirror of
https://github.com/ihmily/StreamCap.git
synced 2026-05-21 00:56:14 +08:00
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.9.10...0.11.2) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
58 lines
1.2 KiB
TOML
58 lines
1.2 KiB
TOML
[project]
|
|
name = "StreamCap"
|
|
version = "0.0.1"
|
|
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.27.6",
|
|
"httpx[http2]>=0.28.1",
|
|
"screeninfo>=0.8.1",
|
|
"aiofiles>=24.1.0",
|
|
"streamget>=4.0.3",
|
|
]
|
|
|
|
[project.urls]
|
|
Documentation = "https://github.com/ihmily/StreamCap"
|
|
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.27.6", extras = ["desktop", "cli"] }
|
|
httpx = "^0.28.1"
|
|
screeninfo = "~0.8.1"
|
|
aiofiles = "~24.1.0"
|
|
streamget = ">=4.0.3"
|
|
|
|
|
|
[tool.poetry.group.lint]
|
|
optional = true
|
|
|
|
[tool.poetry.group.lint.dependencies]
|
|
ruff = "~0.11.2" |