1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-07-03 04:22:53 -05:00

[build] Add minimal pyproject.toml

This commit is contained in:
pukkandan
2023-01-03 10:39:21 +05:30
parent d80ca5deaa
commit e9df3d42c4
2 changed files with 9 additions and 2 deletions

View File

@ -1,8 +1,12 @@
#!/usr/bin/env python3
import os.path
import subprocess
# Allow execution from anywhere
import os
import sys
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
import subprocess
import warnings
try: