From 63b58baa010c609741b2241a7f7a26f0a4010e5b Mon Sep 17 00:00:00 2001 From: Connor Mason Date: Thu, 13 Feb 2025 23:37:22 -0800 Subject: [PATCH] basics --- setup.py | 12 +++++++----- tox.ini | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index af68b485e..38110d654 100644 --- a/setup.py +++ b/setup.py @@ -33,8 +33,13 @@ py2exe_options = { } # Get the version from youtube_dl/version.py without importing the package -exec(compile(open('youtube_dl/version.py').read(), - 'youtube_dl/version.py', 'exec')) +exec( + compile( + open('youtube_dl/version.py').read(), + 'youtube_dl/version.py', + 'exec', + ) +) DESCRIPTION = 'YouTube video downloader' LONG_DESCRIPTION = 'Command-line program to download videos from YouTube.com and other video sites' @@ -125,9 +130,6 @@ setup( 'Environment :: Console', 'License :: Public Domain', 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', diff --git a/tox.ini b/tox.ini index 9c4e4a3d1..48c8caabc 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26,py27,py33,py34,py35 +envlist = py33,py34,py35 [testenv] deps = nose