-
Notifications
You must be signed in to change notification settings - Fork 49
/
pyproject.toml
44 lines (38 loc) · 1.11 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
[build-system]
requires = [
"setuptools>=61",
"setuptools-scm",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools_scm]
[project]
name = "album-splitter"
description = "Split single-file MP3 albums into separate tracks. Download from YouTube supported."
readme = "README.md"
authors = [
{name = "Cristian Baldi", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Multimedia :: Sound/Audio",
]
requires-python = ">=3.7"
dependencies = [
'ffmpy',
'music_tag',
"yt-dlp",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/crisbal/album-splitter/"
Documentation = "https://github.com/crisbal/album-splitter/README.md"
Repository = "https://github.com/crisbal/album-splitter/"
Tracker = "https://github.com/crisbal/album-splitter/issues"
[project.optional-dependencies]
test = ["pytest"]
[project.scripts]
album-splitter = "album_splitter.__main__:main"