Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bilitool/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def cli():
"-V",
"--version",
action="version",
version="bilitool 0.1.2 and source code at https://github.com/timerring/bilitool",
version="bilitool 0.1.3 and source code at https://github.com/timerring/bilitool",
help="Print version information",
)

Expand Down
13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,25 @@ build-backend = "hatchling.build"

[project]
name = "bilitool" # make sure your module name is unique
version = "0.1.2"
version = "0.1.3"
authors = [
{ name="timerring"},
]
description = "The Python toolkit package and cli designed for interaction with Bilibili"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"PyYAML==6.0.2",
"qrcode==8.0",
"Requests==2.32.3",
"tqdm==4.67.1"
"PyYAML>=6.0.2",
"qrcode>=8.0",
"Requests>=2.32.3",
"tqdm>=4.67.1",
"Pillow>=5.2.0"
]

[project.scripts]
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
PyYAML==6.0.2
qrcode==8.0
Requests==2.32.3
tqdm==4.67.1
tqdm==4.67.1
Pillow>=5.2.0