-
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Expand file tree
/
Copy pathPipfile
More file actions
42 lines (38 loc) · 1.3 KB
/
Copy pathPipfile
File metadata and controls
42 lines (38 loc) · 1.3 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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[scripts]
dev = "python main.py"
service = "python service/app.py"
ui = "python -m desktop_ui.app"
ui_build = "pyinstaller --clean --noconfirm desktop_ui/desktop_ui.spec"
docker_run = "docker run -v ./config:/iptv-api/config -v ./output:/iptv-api/output -d -p 80:8080 guovern/iptv-api"
legacy_ui = "python tkinter_ui/tkinter_ui.py"
legacy_ui_build = "pyinstaller tkinter_ui/tkinter_ui.spec"
docker_build = "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t guovern/iptv-api ."
[dev-packages]
pefile = {version = "==2024.8.26", markers = "sys_platform == 'win32'"}
pyinstaller = "==6.21.0"
pywin32 = {version = "==312", markers = "sys_platform == 'win32'"}
pywin32-ctypes = {version = "==0.2.3", markers = "sys_platform == 'win32'"}
pystray = {version = "==0.19.5", markers = "platform_system != 'Linux'"}
pillow = "==12.3.0"
pyside6 = "==6.11.1"
pyside6-fluent-widgets = "==1.11.2"
pysidesix-frameless-window = "==0.8.2"
[packages]
requests = "==2.34.2"
bs4 = "==0.0.2"
rich = "==14.1.0"
async-timeout = "==5.0.1"
aiohttp = "==3.14.1"
opencc-python-reimplemented = "==0.1.7"
gunicorn = "==26.0.0"
m3u8 = "==6.0.0"
pytz = "==2026.2"
ipip-ipdb = "==1.6.1"
urllib3 = "==2.7.0"
flask = "==3.1.3"
[requires]
python_version = "3.14"