forked from jingfelix/BiliFM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (31 loc) · 840 Bytes
/
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
[project]
name = "bilifm"
version = "0.2.4"
description = "Download Bilibili videos as audios."
authors = [
{name = "jingfelix", email = "[email protected]"},
{name = "Felix Jing", email = "[email protected]"},
]
dependencies = [
"requests",
"typer[all]>=0.9.0",
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "GPLv3"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/jingfelix/bilifm"
"Bug Tracker" = "https://github.com/jingfelix/bilifm/issues"
[project.scripts]
bilifm = "bilifm.__init__:app"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
package-dir = "src"
distribution = true