-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
81 lines (70 loc) · 1.53 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
[project]
name = "ASMRManager"
dynamic = ["version"]
description = "download, manage and play the voices on asmr.one"
keywords = [
"asmr",
"downloader",
"music",
"player",
"manager",
"cli",
"tui",
"commandline",
"terminal",
]
authors = [{ name = "SLQY", email = "sqiyel@gmail.com" }]
dependencies = [
"aiohttp>=3.8.6",
"chardet>=5.1.0",
"click>=8.1.3",
"colorlog>=6.7.0",
"pylrc==0.1.2",
"rich>=13.0.0",
"SQLAlchemy==2.0.36",
"textual==0.26.0",
"mutagen>=1.46.0",
"appdirs>=1.4.4",
"toml>=0.10.2",
"beaupy>=3.7.2",
"asyncstdlib>=3.12.2",
]
requires-python = ">=3.10"
readme = "README.md"
license = { text = "MIT" }
urls = { 'repository' = 'https://github.com/slqy123/ASMRManager' }
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.version]
source = "scm"
write_to = "asmrmanager/_version.py"
write_template = "__version__ = \"{}\""
[project.scripts]
asmr = "asmrmanager.cli.main:main"
[project.optional-dependencies]
aria2 = ["aioaria2>=1.3.4"]
idm = ["comtypes>=1.2.0"]
tui = ["trogon==0.4.0"]
pygame = ["pygame>=2.5.0"]
mpd = ["python-mpd2>=3.1.0"]
dev = [
"black>=23.12.0",
"autoflake>=2.2.1",
"isort>=5.13.2",
"pyinstrument>=4.6.2",
"viztracer>=0.16.3",
]
all = ['asmrmanager[aria2,idm,tui,pygame,mpd]']
[tool.black]
line-length = 79
preview = true
[tool.isort]
profile = "black"
line_length = 79
[tool.autoflake]
ignore-init-module-imports = true
[tool.ruff]
line-length = 79
[tool.ruff.lint]
ignore = ['E402']