-
Notifications
You must be signed in to change notification settings - Fork 170
/
pyproject.toml
52 lines (47 loc) · 1.16 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
47
48
49
50
51
52
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bilix"
dynamic = ["version"]
description = "⚡️Lightning-fast asynchronous download tool for bilibili and more"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.8"
authors = [
{ name = "HFrost0", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"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",
]
dependencies = [
"aiofiles>=0.8.0",
"anyio",
"danmakuC>=0.3.5",
"bs4",
"click>=8.0.3",
"httpx[http2]>=0.23.3",
"json5",
"m3u8>=3.5.0",
"pycryptodome",
"pydantic>=2.5.3",
"rich",
"browser_cookie3>=0.17.1",
"pymp4>=1.2.0",
]
[project.scripts]
bilix = "bilix.cli.main:main"
[project.urls]
Homepage = "https://github.com/HFrost0/bilix"
[tool.hatch.version]
path = "bilix/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/bilix",
]