pypi: Pep 625 adaptation

This commit is contained in:
Lovi 2025-03-11 22:00:44 +01:00
parent 89deb6c283
commit 569b761e8d
2 changed files with 9 additions and 2 deletions

View File

@ -38,9 +38,10 @@ jobs:
- name: Install packaging dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools wheel twine
python -m pip install --upgrade setuptools>=61.0.0 wheel twine build
- name: Build package
run: python setup.py sdist bdist_wheel
run: python -m build
- name: Upload to PyPI
env:

View File

@ -0,0 +1,6 @@
# 11.03.25
from .run import main
from .Lib.Downloader.HLS import downloader as HLS_Downloader
from .Lib.Downloader.MP4 import downloader as MP4_Downloader
from .Lib.Downloader.TOR import downloader as TOR_Downloader