Prepare alpha version 1.2.0a2 release
This commit is contained in:
parent
522fce90ae
commit
baae666ddc
|
@ -1,4 +1,4 @@
|
||||||
safeeyes (1.2.0a1-1) xenial; urgency=low
|
safeeyes (1.2.0a2-1) xenial; urgency=low
|
||||||
|
|
||||||
* Move to Python 3
|
* Move to Python 3
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ Homepage: https://github.com/slgobinath/SafeEyes/
|
||||||
|
|
||||||
Package: safeeyes
|
Package: safeeyes
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: ${misc:Depends}, ${python3:Depends}, gir1.2-appindicator3-0.1, python3 (>= 3.4.0), python3-xlib, python3-gi, python3-dbus, gir1.2-notify-0.7, python-gtk2, python3-babel, xprintidle, python3-pyaudio, python3-psutil
|
Depends: ${misc:Depends}, ${python3:Depends}, gir1.2-appindicator3-0.1, python3 (>= 3.4.0), python3-xlib, python3-gi, python3-dbus, gir1.2-notify-0.7, python3-babel, xprintidle, python3-pyaudio, python3-psutil
|
||||||
Description: Safe Eyes
|
Description: Safe Eyes
|
||||||
Safe Eyes is a simple tool to remind you to take periodic breaks for your eyes. This is essential for anyone spending more time on the computer to avoid eye strain and other physical problems.
|
Safe Eyes is a simple tool to remind you to take periodic breaks for your eyes. This is essential for anyone spending more time on the computer to avoid eye strain and other physical problems.
|
||||||
.
|
.
|
||||||
|
|
|
@ -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.0a1"
|
SAFE_EYES_VERSION = "1.2.0a2"
|
||||||
|
|
||||||
"""
|
"""
|
||||||
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.
|
||||||
|
|
12
setup.py
12
setup.py
|
@ -23,13 +23,13 @@ def _data_files(path):
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="safeeyes",
|
name="safeeyes",
|
||||||
version="1.2.0a1",
|
version="1.2.0a2",
|
||||||
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/master.zip",
|
download_url="https://github.com/slgobinath/SafeEyes/archive/v1.2.0a2.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',
|
||||||
|
@ -44,11 +44,9 @@ setuptools.setup(
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Operating System :: POSIX :: Linux",
|
"Operating System :: POSIX :: Linux",
|
||||||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 3 - Alpha",
|
||||||
"Environment :: X11 Applications :: GTK",
|
"Environment :: X11 Applications :: GTK",
|
||||||
"Intended Audience :: End Users/Desktop",
|
"Intended Audience :: End Users/Desktop",
|
||||||
"Topic :: Utilities"] + [
|
"Topic :: Utilities"
|
||||||
('Programming Language :: Python :: %s' % x) for x in
|
"Programming Language :: Python :: 3"]
|
||||||
'3 3.4'.split()
|
|
||||||
]
|
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue