forked from mikumifa/biliTickerBuy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.56 KB
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
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bilitickerbuy"
version = "2.14.10"
description = "开源的 B 站会员购辅助工具,提供命令行和 Gradio 界面"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "biliTickerBuy Maintainers" }]
keywords = ["bilibili", "tickets", "cli", "gradio", "automation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Environment :: Console",
"Environment :: Web Environment",
]
dependencies = [
"gradio~=4.44.1",
"gradio-calendar~=0.0.6",
"gradio-log~=0.0.4",
"httpx[socks]>=0.28.1",
"loguru~=0.7.2",
"ntplib~=0.4.0",
"numpy~=1.26.4",
"playsound3~=3.2.2",
"pydantic~=2.8.2",
"qrcode>=7.4.2",
"requests[socks]~=2.31.0",
"retry~=0.9.2",
"setuptools~=65.5.1",
"tinydb~=4.8.0",
"Pillow~=10.3.0",
"huggingface-hub==0.34.3",
]
[project.urls]
Homepage = "https://github.com/mikumifa/biliTickerBuy"
Source = "https://github.com/mikumifa/biliTickerBuy"
Issues = "https://github.com/mikumifa/biliTickerBuy/issues"
[project.scripts]
btb = "main:main"
[tool.setuptools]
py-modules = ["main"]
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
[tool.mypy]
disable_error_code = ["import-untyped"]
check_untyped_defs = true