summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorYoSTEALTH <35307184+YoSTEALTH@users.noreply.github.com>2020-07-05 20:29:27 -0600
committerjaseg <code@jaseg.net>2020-07-15 22:03:37 +0200
commite6abadec7e00505eea9a91578f2d63939ce9a56c (patch)
treec703b530e10dc68ba3f10b6450661e3ee435d47e /setup.py
parentb4f5b106993e96349bd3abb6831e120152f423aa (diff)
downloadpython-mpv-e6abadec7e00505eea9a91578f2d63939ce9a56c.tar.gz
python-mpv-e6abadec7e00505eea9a91578f2d63939ce9a56c.tar.bz2
python-mpv-e6abadec7e00505eea9a91578f2d63939ce9a56c.zip
added "python_requires"
people are installing this package in python2 and running into issues of syntax error which is only used in pyhon3.5, thus the need of `python_requires`
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 610d702..c08a0c0 100755
--- a/setup.py
+++ b/setup.py
@@ -17,6 +17,7 @@ setup(
test_suite = 'mpv-test',
keywords = ['mpv', 'library', 'video', 'audio', 'player', 'display',
'multimedia'],
+ python_requires='>=3.5',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: X11 Applications',