Skip to content
Snippets Groups Projects
Unverified Commit 2f117a0c authored by Alexander Bus's avatar Alexander Bus
Browse files

Bump version

parent 778ff86e
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ from setuptools import setup ...@@ -5,7 +5,7 @@ from setuptools import setup
from setuptools.command.install import install from setuptools.command.install import install
VERSION = '1.1.5' VERSION = '1.1.6'
def build_qt_resources(): def build_qt_resources():
...@@ -22,7 +22,7 @@ class CustomInstall(install): ...@@ -22,7 +22,7 @@ class CustomInstall(install):
build_qt_resources() build_qt_resources()
except Exception as e: except Exception as e:
print('Could not compile the resources.py file due to an exception: "{}"\n' print('Could not compile the resources.py file due to an exception: "{}"\n'
'Aborting installation.'.format(e)) 'Aborting build.'.format(e))
raise raise
install.run(self) install.run(self)
...@@ -65,7 +65,7 @@ setup( ...@@ -65,7 +65,7 @@ setup(
keywords=["log", "logging", "gui", "qt"], keywords=["log", "logging", "gui", "qt"],
license="GPLv3", license="GPLv3",
long_description=open(join(dirname(__file__), "README.rst")).read(), long_description=open(join(dirname(__file__), "README.rst")).read(),
# package_data={"cutelog": ["styles/*", "ui/*"]}, # everything is in resource.py already # package_data={"cutelog": ["styles/*", "ui/*"]}, # everything is in resources.py already
data_files=[('share/applications', ['share/cutelog.desktop']), data_files=[('share/applications', ['share/cutelog.desktop']),
('share/pixmaps', ['share/cutelog.png'])], ('share/pixmaps', ['share/cutelog.png'])],
zip_safe=False, zip_safe=False,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment