-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (55 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
59 lines (55 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "darkeye"
version = "1.2.3"
description = "暗黑影片收藏软件,专注沉浸式采集与拟物化收藏"
readme = "README.md"
license = { text = "GPL3.0" }
requires-python = ">=3.13,<3.14"
dependencies = [
"pyside6==6.10.1",
"shiboken6==6.10.1",
"shiboken6-generator==6.10.1",
"numpy",
"uvicorn[standard]",
"fastapi",
"pydantic",
"pyinstaller",
"nuitka==2.8.9",
"pytest",
"psutil",
"matplotlib",
"networkx",
"requests",
"googletrans",
"wordcloud",
"zstandard",
]
[project.optional-dependencies]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["core*", "ui*", "controller*", "darkeye_ui*", "utils*", "server*"]
[tool.black]
line-length = 88
target-version = ["py313"]
extend-exclude = """
/(
\\.git
| \\.venv
| venv
| \\.pytest_cache
| \\.pytest_tmp
| \\.mypy_cache
| build
| dist
| cpp_bindings
| extensions
)/
"""