tokland / youtube-upload

Upload videos to Youtube from the command line
2.06k stars 464 forks source link

Deprecation of *.egg, setup.py and easy_install commands for installation #371

Open alanjohnmiller opened 7 months ago

alanjohnmiller commented 7 months ago

Using setup.py for installation as suggested will soon result in failure.

e.g. python setup.py install

../setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. ../setuptools/_distutils/cmd.py:66: EasyInstallDeprecationWarning: easy_install command is deprecated.

    ********************************************************************************
    Please avoid running ``setup.py`` and ``easy_install``.
    Instead, use pypa/build, pypa/installer or other
    standards-based tools.

    See https://github.com/pypa/setuptools/issues/917 for details.
    ********************************************************************************

DEPRECATION: Loading egg at ../youtube_upload-0.8.0-py3.12.egg is deprecated. pip 24.3 will enforce this behaviour change. A possible replacement is to use pip for package installation.. Discussion can be found at https://github.com/pypa/pip/issues/12330

I was wondering if another installation method will be able to be used for youtube-upload when pip 24.3 is released.

Regards

AJ