Prepare alpha version 1.2.0a7 release

This commit is contained in:
Gobinath 2017-04-15 08:54:00 -04:00
parent ea2b186ab0
commit e748fbfd8d
4 changed files with 16 additions and 7 deletions

View File

@ -1,3 +1,2 @@
include LICENSE include LICENSE
include README.md include README.md
recursive-include share *

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
safeeyes (1.2.0a6-1) xenial; urgency=low safeeyes (1.2.0a7-1) xenial; urgency=low
* Move to Python 3 * Move to Python 3

View File

@ -44,7 +44,7 @@ system_style_sheet_path = os.path.join(Utility.bin_directory, "config/style/safe
is_active = True is_active = True
CONFIGURATION_VERSION = 4 CONFIGURATION_VERSION = 4
SAFE_EYES_VERSION = "1.2.0a6" SAFE_EYES_VERSION = "1.2.0a7"
""" """
Listen to tray icon Settings action and send the signal to Settings dialog. Listen to tray icon Settings action and send the signal to Settings dialog.

View File

@ -23,21 +23,31 @@ def _data_files(path):
setuptools.setup( setuptools.setup(
name="safeeyes", name="safeeyes",
version="1.2.0a6", version="1.2.0a7",
description="Protect your eyes from eye strain using this continuous breaks reminder.", description="Protect your eyes from eye strain using this continuous breaks reminder.",
long_description=long_description, long_description=long_description,
author="Gobinath Loganathan", author="Gobinath Loganathan",
author_email="slgobinath@gmail.com", author_email="slgobinath@gmail.com",
url="https://github.com/slgobinath/SafeEyes", url="https://github.com/slgobinath/SafeEyes",
download_url="https://github.com/slgobinath/SafeEyes/archive/v1.2.0a6.tar.gz", download_url="https://github.com/slgobinath/SafeEyes/archive/v1.2.0a7.tar.gz",
packages=setuptools.find_packages(), packages=setuptools.find_packages(),
package_data={'safeeyes': ['config/*.json', package_data={'safeeyes': ['config/*.json',
'config/style/*.css', 'config/style/*.css',
'config/lang/*.json', 'config/lang/*.json',
'glade/*.glade', 'glade/*.glade',
'resource/*']}, 'resource/*']},
data_files=list(_data_files( data_files=[('/usr/share/applications', ['share/applications/safeeyes.desktop']),
os.path.join(os.path.dirname(__file__), 'share'))), ('/usr/share/icons/hicolor/16x16/apps', ['share/icons/hicolor/16x16/apps/safeeyes.png']),
('/usr/share/icons/hicolor/24x24/apps', ['share/icons/hicolor/24x24/apps/safeeyes.png']),
('/usr/share/icons/hicolor/48x48/apps', ['share/icons/hicolor/48x48/apps/safeeyes.png']),
('/usr/share/icons/hicolor/32x32/apps', ['share/icons/hicolor/32x32/apps/safeeyes.png']),
('/usr/share/icons/hicolor/64x64/apps', ['share/icons/hicolor/64x64/apps/safeeyes.png']),
('/usr/share/icons/hicolor/128x128/apps', ['share/icons/hicolor/128x128/apps/safeeyes.png']),
('/usr/share/icons/hicolor/48x48/status', ['share/icons/hicolor/48x48/status/safeeyes_enabled.png', 'share/icons/hicolor/48x48/status/safeeyes_disabled.png']),
('/usr/share/icons/hicolor/32x32/status', ['share/icons/hicolor/32x32/status/safeeyes_enabled.png', 'share/icons/hicolor/32x32/status/safeeyes_disabled.png']),
('/usr/share/icons/hicolor/24x24/status', ['share/icons/hicolor/24x24/status/safeeyes_enabled.png', 'share/icons/hicolor/24x24/status/safeeyes_disabled.png', 'share/icons/hicolor/24x24/status/safeeyes_timer.png']),
('/usr/share/icons/hicolor/16x16/status', ['share/icons/hicolor/16x16/status/safeeyes_enabled.png', 'share/icons/hicolor/16x16/status/safeeyes_disabled.png', 'share/icons/hicolor/16x16/status/safeeyes_timer.png'])
],
install_requires=requires, install_requires=requires,
entry_points={'console_scripts': ['safeeyes = safeeyes.__main__:main']}, entry_points={'console_scripts': ['safeeyes = safeeyes.__main__:main']},
keywords='linux utility health eye-strain safe-eyes', keywords='linux utility health eye-strain safe-eyes',