commit 72741790db75881ac35042d73179980cfa9df0d4
parent a217bd4ddf122157d1f0aad7ebccfa504e09d35f
Author: Isak Lindhé <isak.e.lindhe@gmail.com>
Date: Sat, 18 Apr 2020 16:51:42 +0200
no python2 plz
Diffstat:
3 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
@@ -9,7 +9,7 @@ Now you can read it without touching your mouse or your tv-remote :)
If you have Python 3.6 or later with pip installed, just run
- pip install --user txtv
+ pip3 install --user txtv
Currently wont work natively on the Windows command line because of [readline](https://docs.python.org/3/library/readline.html); but you can use it with [Ubuntu for Windows](https://tutorials.ubuntu.com/tutorial/tutorial-ubuntu-on-windows#0).
diff --git a/setup.py b/setup.py
@@ -20,6 +20,7 @@ setup(
license='GPLv3+',
py_modules=['txtv'],
packages=find_packages(),
+ python_requires='>=3.6'
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
diff --git a/txtv/txtv.py b/txtv/txtv.py