-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.32 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ncmlyrics"
description = "No description at now."
requires-python = ">=3.12"
license = { text = "GPL-3.0-or-later" }
authors = [{ name = "Puqns67", email = "[email protected]" }]
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Natural Language :: Chinese (Simplified)",
]
dependencies = ["httpx", "rich>=13", "click>=8", "platformdirs>=4"]
dynamic = ["readme", "version"]
[project.optional-dependencies]
brotli = [
"brotli; platform_python_implementation == 'CPython'",
"brotlicffi; platform_python_implementation != 'CPython'",
]
http2 = ["h2>=3,<5"]
zstd = ["zstandard>=0.18.0"]
[project.scripts]
ncmlyrics = "ncmlyrics:main"
[project.urls]
Homepage = "https://github.com/Puqns67/ncmlyrics"
Issues = "https://github.com/Puqns67/ncmlyrics/issues"
[tool.hatch.version]
path = "ncmlyrics/__version__.py"
[tool.ruff]
target-version = "py312"
line-length = 120