-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(build): Update build configuration and dependencies
- Loading branch information
1 parent
eb3af1c
commit 4acc05b
Showing
3 changed files
with
52 additions
and
7 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 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 |
---|---|---|
|
@@ -6,23 +6,23 @@ dependencies = [ | |
"requests", | ||
"mutagen", | ||
"diskcache", | ||
"chardet", | ||
"charset-normalizer", | ||
"pyaes", | ||
"psutil", | ||
"pyobjc; sys_platform == 'darwin'", | ||
] | ||
requires-python = ">= 3.10" | ||
description = "A lyrics acquisition tool" | ||
readme = "README.md" | ||
authors = [ | ||
maintainers = [ | ||
{name = "沉默の金", email = "[email protected]"} | ||
] | ||
license = {file = "LICENSE"} | ||
keywords = ["lyrics","music","download","acquisition","tool"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: End Users/Desktop", | ||
"Environment :: MacOS X ", | ||
"Environment :: MacOS X", | ||
"Environment :: Win32 (MS Windows)", | ||
"Environment :: X11 Applications :: Qt", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
|
@@ -43,8 +43,16 @@ repository = "https://github.com/chenmozhijin/LDDC" | |
documentation = "https://github.com/chenmozhijin/LDDC/wiki" | ||
tracker = "https://github.com/chenmozhijin/LDDC/issues" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "LDDC.__version__"} | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.hatch.build] | ||
include = ["LDDC/**"] | ||
exclude = ["*.ui", "*.qrc", "LDDC/res/img", "LDDC/res/i18n"] | ||
|
||
[tool.hatch.version] | ||
path = "LDDC/utils/version.py" | ||
|
||
[tool.ruff] | ||
target-version = "py310" | ||
|
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,10 @@ | ||
requests | ||
PySide6-Essentials>=6.8.0 | ||
mutagen | ||
diskcache | ||
charset-normalizer | ||
pyaes | ||
psutil | ||
pyobjc; sys_platform == 'darwin' | ||
hatchling | ||
build |