-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
42 lines (39 loc) · 980 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
37
38
39
40
41
42
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nicolive-dl"
version = "0.2.0"
description = "NicoLive Downloader"
requires-python = ">=3.9"
authors = [
{ name = "kairi003", email = "[email protected]" },
{ name = "zhyu" },
{ name = "DeltaFlyerW" },
{ name = "Negima1072" },
{ name = "woonie" },
]
maintainers = [{ name = "kairi003", email = "[email protected]" }]
license = { file = "LICENSE" }
readme = "README.md"
keywords = [
"nicovideo",
"nicovideo.jp",
"live.nicovideo.jp",
"nicolive",
"niconico",
"downloader",
]
dependencies = [
"beautifulsoup4",
"lxml",
"requests",
"sanitize-filename",
"websockets",
]
[project.urls]
Homepage = "https://github.com/kairi003/nicolive-dl"
Repository = "https://github.com/kairi003/nicolive-dl"
[project.scripts]
nicolive_dl = "nicolive_dl.__main__:main"
nicolive-dl = "nicolive_dl.__main__:main"