txtv

Swiss text tv in the terminal
git clone https://git.in0rdr.ch/txtv.git
Log | Files | Refs | Pull requests |Archive | README | LICENSE

commit 7d6d3b2d4ed946cf084b09d5cf74c841863dba62
parent a6166d1a2fa4ecaa1e5bd15333a11287c944a969
Author: Isak Lindhé <isak.e.lindhe@gmail.com>
Date:   Tue, 19 Mar 2019 15:52:57 +0100

oops, forgot some renames

Diffstat:
MREADME.md | 2+-
Msetup.py | 8++++++--
Mtxtv/__main__.py | 2+-
3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md @@ -30,6 +30,6 @@ Right now the most interesting thing there is aliases which work both in CLI mod ## Links -Here is the trello for the development of txtv: https://trello.com/b/aBI0DpN3/svtxtv +Here is the trello for the development of txtv: https://trello.com/b/aBI0DpN3/txtv Here is where it's scraping data from: https://www.svt.se/svttext/web/pages/100.html diff --git a/setup.py b/setup.py @@ -24,10 +24,14 @@ setup( 'Environment :: Console', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', ], + install_requires=[ + 'beautifulsoup4', + 'colorama', + 'requests', + ] entry_points={ 'console_scripts': [ - 'svtxtv=svtxtv.txtv:run', - 'txtv=svtxtv.txtv:run', + 'txtv=txtv.txtv:run', ], } ) diff --git a/txtv/__main__.py b/txtv/__main__.py @@ -1,4 +1,4 @@ -from svtxtv.txtv import run +from txtv.txtv import run if __name__ == '__main__': run()