-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
89 lines (85 loc) · 2.4 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ffcuesplitter"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "Gianluca Pernigotto", email = "jeanlucperni@gmail.com"}
]
maintainers = [
{name = "Gianluca Pernigotto", email = "jeanlucperni@gmail.com"}
]
description = "FFmpeg-based audio splitter for CDDA images associated with .cue files ."
license = {text = "GNU General Public License v3 (GPLv3)"}
keywords = [
"ffcuesplitter",
"converter",
"audio splitter",
"ffmpeg"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
"Topic :: Utilities",
]
dependencies = [
"chardet>=4.0.0",
"tqdm>=4.38.0",
"deflacue>=2.0.1"
]
build = [
"build",
"hatchling",
"pip",
"six",
"wheel",
"setuptools",
]
[tool.hatch.version]
path = "ffcuesplitter/about.py"
[tool.hatch.build.targets.sdist]
include = [
"ffcuesplitter",
"tests",
"man",
"AUTHORS",
"BUGS",
"CHANGELOG",
"INSTALL",
"LICENSE",
"README.md", # already included as readme
"TODO",
"ffcuesplitter.py",
".gitignore", # already included by default, needed for auto-excludes
".flake8",
".pylintrc",
]
exclude = [
]
[tool.hatch.build.targets.wheel]
packages = ["ffcuesplitter"]
[tool.hatch.build.targets.wheel.shared-data]
"man/ffcuesplitter.1.gz" = "share/man/man1/ffcuesplitter.1.gz"
[project.scripts]
ffcuesplitter = "ffcuesplitter.main:main"
[project.urls]
Homepage = "https://github.com/jeanslack/FFcuesplitter"
Documentation = "https://github.com/jeanslack/FFcuesplitter#readme"
Wiki = "https://github.com/jeanslack/FFcuesplitter/wiki"
Tracker = "https://github.com/jeanslack/Videomass/issues"