txtv

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

commit 46fffd388daadd9ed75ee5f4c898da8ff00ebac3
parent 3af6f3dea653980bd3fe565969e2db9f5f4a1504
Author: Isak Lindhé <isak.e.lindhe@gmail.com>
Date:   Wed, 20 Mar 2019 16:01:51 +0100

fixed import in setup

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

diff --git a/setup.py b/setup.py @@ -1,5 +1,5 @@ from pathlib import Path -from setuptools import setup +from setuptools import setup, find_packages HERE = Path(__file__).parent @@ -19,7 +19,7 @@ setup( author_email='isak.e.lindhe@gmail.com', license='GPLv3+', py_modules=['txtv'], - packages=setuptools.find_packages(), + packages=find_packages(), classifiers=[ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6',