Skip to content

Commit

Permalink
1.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
chrys87 committed Feb 15, 2019
1 parent 851be84 commit 2118f64
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 28 deletions.
11 changes: 0 additions & 11 deletions realese nots/1.9.5

This file was deleted.

30 changes: 15 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
from setuptools import find_packages
from setuptools import setup

fenrirVersion = '1.9.3'
packageVersion = 'post4'
fenrirVersion = '1.9.6'
packageVersion = 'post1'

# handle flags for package manager like yaourt and pacaur.
# handle flags for package manager like aurman and pacaur.
forceSettings = False
if "--force-settings" in sys.argv:
forceSettings = True
Expand All @@ -18,7 +18,7 @@
data_files = []
directories = glob.glob('config/*')
for directory in directories:
files = glob.glob(directory+'/*')
files = glob.glob(directory+'/*')
destDir = ''
if 'config/punctuation' in directory :
destDir = '/etc/fenrirscreenreader/punctuation'
Expand All @@ -32,14 +32,14 @@
except:
pass
elif 'config/scripts' in directory:
destDir = '/usr/share/fenrirscreenreader/scripts'
destDir = '/usr/share/fenrirscreenreader/scripts'
if destDir != '':
data_files.append((destDir, files))

files = glob.glob('config/sound/default/*')
destDir = '/usr/share/sounds/fenrirscreenreader/default'
files = glob.glob('config/sound/default/*')
destDir = '/usr/share/sounds/fenrirscreenreader/default'
data_files.append((destDir, files))
files = glob.glob('config/sound//template/*')
files = glob.glob('config/sound//template/*')
destDir = '/usr/share/sounds/fenrirscreenreader/template'
data_files.append((destDir, files))
files = glob.glob('tools/*')
Expand All @@ -57,18 +57,18 @@ def read(fname):
# description
description="A TTY Screen Reader for Linux.",
long_description=read('README.md'),
keywords=['screenreader', 'a11y', 'accessibility', 'terminal', 'TTY', 'console'],
keywords=['screenreader', 'a11y', 'accessibility', 'terminal', 'TTY', 'console'],
license="License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
url="https://github.com/chrys87/fenrir/",
download_url = 'https://github.com/chrys87/fenrir/archive/' + fenrirVersion + '.tar.gz',
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Development Status :: 5 - Production/Stable",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Environment :: Console",
"Environment :: Console",
],

# Application author details:
author="Chrys, Storm_dragon, Jeremiah and others",
author_email="chrysg@linux-a11y.org",
Expand All @@ -83,7 +83,7 @@ def read(fname):
zip_safe=False,

data_files=data_files,

# Dependent packages (distributions)
install_requires=[
"evdev>=1.1.2",
Expand All @@ -95,7 +95,7 @@ def read(fname):
"pyttsx3",
"pyte>=0.7.0",
],

)

if not forceSettings:
Expand Down
4 changes: 2 additions & 2 deletions src/fenrirscreenreader/fenrirVersion.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.

version = '1.9.4'
codename = 'tucher'
version = '1.9.6'
codename = 'mahrs'

0 comments on commit 2118f64

Please sign in to comment.