-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare alpha version 1.2.0a7 release
- Loading branch information
1 parent
ea2b186
commit e748fbf
Showing
4 changed files
with
16 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
include LICENSE | ||
include README.md | ||
recursive-include share * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
|