diff --git a/bilitool/cli.py b/bilitool/cli.py index b7d3bfe..0d6ba50 100644 --- a/bilitool/cli.py +++ b/bilitool/cli.py @@ -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", ) diff --git a/pyproject.toml b/pyproject.toml index fc748fc..006f29c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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] diff --git a/requirements.txt b/requirements.txt index dbb1d39..295744b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ PyYAML==6.0.2 qrcode==8.0 Requests==2.32.3 -tqdm==4.67.1 \ No newline at end of file +tqdm==4.67.1 +Pillow>=5.2.0 \ No newline at end of file