-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
53 lines (50 loc) · 1.49 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
[build-system]
requires = ["setuptools", "wheel"]
[bdist_wheel]
universal = 0 # Make the generated wheels have "py3" tag
[project]
name = "tidal-wave"
dynamic = ["version"]
description = "A tool to wave at the TIDAL music service."
authors = [{ name = "colinho", email = "[email protected]" }]
maintainers = [{ name = "colinho", email = "[email protected]" }]
license = { file = "LICENSE" }
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
classifiers = [
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video",
]
dependencies = [
"backoff==2.2.1",
"cachecontrol==0.14.1",
"dataclass-wizard==0.28.0",
"ffmpeg-python==0.2.0",
"mutagen==1.47.0",
"m3u8==6.0.0",
"platformdirs==4.3.6",
"pycryptodome==3.21.0",
"requests[socks]==2.32.3",
"typer==0.13.1",
]
[project.scripts]
tidal-wave = "tidal_wave.main:app"
[project.urls]
Homepage = "https://github.com/ebb-earl-co/tidal-wave"
[tool.ruff]
target-version = "py38"
[tool.setuptools.dynamic]
version = {attr = "tidal_wave.main.__version__"}
[tool.uv]
dev-dependencies = [
"pyinstaller==6.7.0",
"ruff"
]