Arquivos
yewtube/mps_youtube/__init__.py
T
lawrence 42cfda07dd Update project URL and version maintenance (#1262)
* Update project URL

* Update __version__ in setup.py

This suppresses the update notifications

* help new: more accurate helptext

`help new` doesn't actually check whether there's a new version,
it shows the changelog for the latest release no matter what.
Update helptext to reflect this.
2024-03-20 16:46:45 +05:00

8 linhas
272 B
Python

from pip._vendor import pkg_resources
__version__ = next((p.version for p in pkg_resources.working_set if p.project_name.lower() == 'yewtube'), "unable to determine")
__author__ = "iamtalhaasghar"
__license__ = "GPLv3"
__url__ = "https://github.com/mps-youtube/yewtube"