-
Notifications
You must be signed in to change notification settings - Fork 106
/
pyproject.toml
65 lines (58 loc) · 1.62 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
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "f2"
dynamic = ["version"]
description = "🚀Asynchronous based full-platform download tool"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/Johnserf-Seed/f2"
requires-python = ">=3.9"
authors = [
{ name = "Johnserf-Seed", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Intended Audience :: Customer Service",
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"click==8.1.7",
"rich==13.7.1",
"httpx==0.27.0",
"aiofiles==24.1.0",
"aiosqlite==0.20.0",
"pyyaml==6.0.1",
"jsonpath-ng==1.6.1",
"importlib_resources==6.4.0",
"m3u8==3.6.0",
"pytest==8.2.2",
"pytest-asyncio==0.21.1",
"browser_cookie3==0.19.1",
"pydantic==2.6.4",
"qrcode==7.4.2",
"websockets>=11.0",
"PyExecJS==1.5.1",
"protobuf==5.27.2",
"gmssl==3.2.2",
]
[project.scripts]
f2 = "f2.cli.cli_commands:main"
[project.urls]
Homepage = "https://github.com/Johnserf-Seed/f2"
Documentation = "https://johnserf-seed.github.io/f2/"
Chat = "https://discord.gg//3PhtPmgHf8"
"Source Code" = "https://github.com/Johnserf-Seed/f2"
"Issue Tracker" = "https://github.com/Johnserf-Seed/f2/issues"
[tool.hatch.version]
path = "f2/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/f2",
]