Skip to content

Commit

Permalink
Prepare alpha version 1.2.0a7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
slgobinath committed Apr 15, 2017
1 parent ea2b186 commit e748fbf
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
include LICENSE
include README.md
recursive-include share *
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
safeeyes (1.2.0a6-1) xenial; urgency=low
safeeyes (1.2.0a7-1) xenial; urgency=low

* Move to Python 3

Expand Down
2 changes: 1 addition & 1 deletion safeeyes/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

is_active = True
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.
Expand Down
18 changes: 14 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,31 @@ def _data_files(path):

setuptools.setup(
name="safeeyes",
version="1.2.0a6",
version="1.2.0a7",
description="Protect your eyes from eye strain using this continuous breaks reminder.",
long_description=long_description,
author="Gobinath Loganathan",
author_email="[email protected]",
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(),
package_data={'safeeyes': ['config/*.json',
'config/style/*.css',
'config/lang/*.json',
'glade/*.glade',
'resource/*']},
data_files=list(_data_files(
os.path.join(os.path.dirname(__file__), 'share'))),
data_files=[('/usr/share/applications', ['share/applications/safeeyes.desktop']),
('/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,
entry_points={'console_scripts': ['safeeyes = safeeyes.__main__:main']},
keywords='linux utility health eye-strain safe-eyes',
Expand Down

0 comments on commit e748fbf

Please sign in to comment.