forked from ihmily/StreamCap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (58 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
68 lines (58 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[project]
name = "StreamCap"
version = "1.0.2"
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",
"flet-video==0.1.1",
"httpx[http2]>=0.28.1",
"screeninfo>=0.8.1",
"aiofiles>=24.1.0",
"streamget>=4.0.8",
"python-dotenv>=1.0.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.27.6", extras = ["desktop", "cli"] }
flet-video = "^0.1.1"
httpx = "^0.28.1"
screeninfo = "~0.8.1"
aiofiles = "~24.1.0"
streamget = ">=4.0.8"
python-dotenv = "~1.1.0"
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.13.2"