From 9334e5b37c9a5e6ee7f21d198614861eb7a5ee8a Mon Sep 17 00:00:00 2001 From: Rob Whyte Date: Wed, 16 Aug 2017 04:23:56 +1000 Subject: [PATCH 1/2] Added some capitalization and fixed slight grammar --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 4d9640a3..4e230753 100755 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ setup( # Version number (initial): version=fenrirVersion, # description - description="An TTY Screen Reader For Linux.", + description="A TTY Screen Reader for Linux.", long_description=read('README.md'), keywords=['screenreader', 'a11y', 'accessibility', 'terminal', 'TTY', 'console'], license="License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", @@ -58,7 +58,7 @@ setup( ], # Application author details: - author="Chrys, storm_dragon, Jeremiah and others", + author="Chrys, Storm_dragon, Jeremiah and others", author_email="chrysg@linux-a11y.org", # Packages @@ -88,8 +88,8 @@ print('To have fenrir start at boot:') print('sudo systemctl enable fenrir') print('Pulseaudio users may want to run:') print('/usr/share/fenrir/tools/configure_pulse.sh') -print('once as their user account and once as root to configure pulseaudio.') -print('Please install the following packages manal:') -print('- speech-dispatcher: for the default speech driver') -print('- espeak: as basic TTS engine') +print('once as their user account and once as root to configure Pulseaudio.') +print('Please install the following packages manually:') +print('- Speech-dispatcher: for the default speech driver') +print('- Espeak: as basic TTS engine') print('- brltty: for Braille') From ba744476d8fff2ce490f0c64bcfbbafa5ae90ed0 Mon Sep 17 00:00:00 2001 From: chrys Date: Tue, 15 Aug 2017 23:49:40 +0200 Subject: [PATCH 2/2] add daemonize to setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 4d9640a3..634babd7 100755 --- a/setup.py +++ b/setup.py @@ -75,6 +75,7 @@ setup( # Dependent packages (distributions) install_requires=[ "evdev", + "daemonize", "sox", "dbus-python", "pyenchant",