-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from jeanslack/builder
Switch to hatchling builder + fixes
- Loading branch information
Showing
10 changed files
with
141 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
Writer: jeanslack <[email protected]> | ||
license: GPL3 | ||
Copyright: (C) 2024 Gianluca Pernigotto <[email protected]> | ||
Rev: Aug 12 2023 | ||
Rev: Oct 22 2024 | ||
#################################################################### | ||
This file is part of FFcuesplitter. | ||
|
@@ -22,32 +22,30 @@ | |
You should have received a copy of the GNU General Public License | ||
along with FFcuesplitter. If not, see <http://www.gnu.org/licenses/>. | ||
""" | ||
__author__ = "Gianluca Pernigotto - Jeanslack" | ||
__contact__ = '<[email protected]>' | ||
__maintainer__ = "Gianluca Pernigotto - Jeanslack" | ||
__maintainer_contact__ = "[email protected]" | ||
__copyleft__ = '2024' | ||
__version__ = '1.0.23' | ||
__release__ = 'January 09 2024' | ||
__appname__ = "FFcuesplitter" | ||
__packagename__ = "ffcuesplitter" | ||
__license__ = "GPL3 (Gnu Public License)" | ||
__projecturl__ = "https://github.com/jeanslack/FFcuesplitter" | ||
__githuburl__ = "https://github.com/jeanslack/FFcuesplitter" | ||
__description__ = ("FFmpeg based audio splitter for CDDA images associated " | ||
"with .cue files.") | ||
__descriptionfull__ = """FFcuesplitter is a multi-platform CUE sheet splitter | ||
AUTHOR = "Gianluca Pernigotto - Jeanslack" | ||
CONTACT = '<[email protected]>' | ||
MAINTAINER = "Gianluca Pernigotto - Jeanslack" | ||
COPYLEFT = '2024' | ||
VERSION = '1.0.25' | ||
RELEASE = 'October 21 2024' | ||
APPNAME = "FFcuesplitter" | ||
PKGNAME = "ffcuesplitter" | ||
LICENSE_NAME = "GPL3 (Gnu Public License)" | ||
PROJECTURL = "https://github.com/jeanslack/FFcuesplitter" | ||
GITHUBURL = "https://github.com/jeanslack/FFcuesplitter" | ||
SHORT_DESCRIPT = ("FFmpeg based audio splitter for CDDA images associated " | ||
"with .cue files.") | ||
LONG_DESCRIPT = """FFcuesplitter is a multi-platform CUE sheet splitter | ||
entirely based on FFmpeg. Splits big audio tracks and automatically embeds tags | ||
using the information contained in the associated **"CUE"** sheet. It supports | ||
multiple CUE sheet encodings and many input formats (due to FFmpeg), including | ||
APE format, without need installing extra audio libs and packages. It has the | ||
ability to accept both files and directories as input while also working in | ||
recursive mode. Can be used both as a Python module or by command line.""" | ||
__license__ = "GPL3 (Gnu Public License)" | ||
__licensefull__ = f""" | ||
Copyright - {__copyleft__} {__author__} | ||
Author and Developer: {__author__} | ||
Mail: {__contact__} | ||
SHORT_LICENSE = f""" | ||
Copyright - {COPYLEFT} {AUTHOR} | ||
Author and Developer: {AUTHOR} | ||
Mail: {CONTACT} | ||
FFcuesplitter is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 = "[email protected]"} | ||
] | ||
maintainers = [ | ||
{name = "Gianluca Pernigotto", email = "[email protected]"} | ||
] | ||
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" |