mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[skip travis] fix broken setup.py
This commit is contained in:
parent
66f4ffbbad
commit
58ac65e7ed
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
# coding: utf-8
|
||||
|
||||
from setuptools import setup, Command
|
||||
from setuptools import setup, Command, find_packages
|
||||
import os.path
|
||||
import warnings
|
||||
import sys
|
||||
|
@ -67,7 +67,7 @@ def run(self):
|
|||
long_description=LONG_DESCRIPTION,
|
||||
# long_description_content_type="text/markdown",
|
||||
url="https://github.com/blackjack4494/youtube-dlc",
|
||||
packages=setuptools.find_packages(),
|
||||
packages=find_packages(),
|
||||
#packages=[
|
||||
# 'youtube_dlc',
|
||||
# 'youtube_dlc.extractor', 'youtube_dlc.downloader',
|
||||
|
|
Loading…
Reference in a new issue