-
-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use importlib.metadata to get the version number from the installed p…
…ackage
- Loading branch information
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
# flake8: noqa | ||
|
||
import importlib.metadata | ||
|
||
from . import exceptions | ||
from .cached_download import cached_download | ||
from .cached_download import md5sum | ||
from .download import download | ||
from .download_folder import download_folder | ||
from .extractall import extractall | ||
|
||
__author__ = "Kentaro Wada <[email protected]>" | ||
__version__ = "4.7.3" | ||
__version__ = importlib.metadata.version("gdown") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,7 @@ test = [ | |
"ruff", | ||
"twine", | ||
"types-requests", | ||
"types-setuptools", | ||
] | ||
|
||
[project.urls] | ||
|