txtv

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

commit 3af6f3dea653980bd3fe565969e2db9f5f4a1504
parent ab1501ab5294669cbb290957f7e6ff75df945f4e
Author: Isak Lindhé <isak.e.lindhe@gmail.com>
Date:   Wed, 20 Mar 2019 15:59:20 +0100

added download_url to setup

Diffstat:
Msetup.py | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/setup.py b/setup.py @@ -5,13 +5,16 @@ HERE = Path(__file__).parent README = (HERE / 'README.md').read_text() +VERSION = '1.0.0' + setup( name='txtv', - version='1.0.0', + version=VERSION, description='CLI for reading swedish text-tv', long_description=README, long_description_content_type='text/markdown', url='https://github.com/voidcase/txtv', + download_url=f'https://github.com/voidcase/txtv/archive/v{VERSION}.tar.gz', author='Isak Lindhé', author_email='isak.e.lindhe@gmail.com', license='GPLv3+',