-
-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathpyproject.toml
107 lines (105 loc) · 2.24 KB
/
pyproject.toml
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[project]
name = "hydrus"
version = "v610"
description = "A personal booru-style media tagger"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
# requirements_core.txt
"beautifulsoup4>=4.0.0",
"cbor2>=5.6.5",
"chardet>=3.0.4",
"cloudscraper>=1.2.33",
"cryptography>=44.0.0",
"dateparser>=1.2.0",
"html5lib>=1.0.1",
"lxml>=4.5.0",
"lz4>=3.0.0",
"numpy>=2.0.0",
"olefile>=0.47",
"pillow>=10.0.1",
"pillow-heif>=0.12.0",
"pillow-jxl-plugin>=1.3.0",
"psd-tools>=1.9.28",
"psutil>=5.0.0",
"pympler>=1.1",
"pyopenssl>=19.1.0",
"pysocks>=1.7.0",
"python-dateutil>=2.9.0.post0",
"pyyaml>=5.0.0",
"send2trash>=1.5.0",
"service-identity>=18.1.0",
"show-in-file-manager>=1.1.5",
"twisted[http2,tls]>=20.3.0",
# requirements_macos.txt
"pyobjc-core>=10.1 ; sys_platform == 'darwin'",
"pyobjc-framework-cocoa>=10.1 ; sys_platform == 'darwin'",
"pyobjc-framework-quartz>=10.1 ; sys_platform == 'darwin'",
# requirements_windows.txt
"pywin32 ; sys_platform == 'win32'",
]
[tool.uv]
default-groups = [ "mpv-new", "opencv-new", "other-normal", "qt6-new" ]
conflicts = [
[
{ group = "mpv-new" },
{ group = "mpv-test" },
{ group = "mpv-old" },
],
[
{ group = "opencv-new" },
{ group = "opencv-test" },
{ group = "opencv-old" },
],
[
{ group = "other-future" },
{ group = "other-normal" },
],
[
{ group = "qt6-new" },
{ group = "qt6-new-pyqt6" },
{ group = "qt6-older" },
{ group = "qt6-test" },
]
]
[dependency-groups]
mpv-new = [
"mpv==1.0.7",
]
mpv-test = [
"mpv==1.0.7",
]
opencv-new = [
"opencv-python-headless==4.10.0.84",
]
opencv-old = [
"opencv-python-headless==4.8.1.78",
]
opencv-test = [
"opencv-python-headless==4.11.0.86",
]
other-future = [
"requests==2.32.3",
"setuptools==70.3.0",
]
other-normal = [
"requests==2.32.3",
"setuptools==70.3.0",
]
qt6-new = [
"pyside6==6.7.3",
"qtpy==2.4.1",
]
qt6-new-pyqt6 = [
"pyqt6",
"pyqt6-charts",
"qtpy==2.4.2",
]
qt6-older = [
"pyside6==6.3.1",
"qtpy==2.3.1",
]
qt6-test = [
"pyside6==6.8.1.1",
"qtpy==2.4.2",
]