42cfda07dd
* 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.
8 linhas
272 B
Python
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"
|
|
|