-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Officially forking since the original project is apparently dead.
- Loading branch information
Showing
5 changed files
with
26 additions
and
14 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
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,8 +1,9 @@ | ||
#!/usr/bin/env python | ||
# | ||
# setup.py | ||
# cxfreeze_setup.py | ||
# | ||
# Copyright 2009 Thomas Jost <[email protected]> | ||
# Copyright 2015 Cimbali <[email protected]> | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
|
@@ -34,7 +35,7 @@ | |
print("Can not find where the GTK libraries and Python bindings are installed!") | ||
exit(1) | ||
|
||
version="0.3" | ||
version="0.4" | ||
|
||
libs_etc = [ | ||
'etc', | ||
|
@@ -48,9 +49,17 @@ | |
os.path.join('share', 'xml') | ||
] | ||
|
||
#include all Gtk DLLs, because litteraly the only we can skip would save us 104kB, they are: | ||
#libgailutil-3.0.dll, libharfbuzz-gobject-0.dll, libharfbuzz-icu-0.dll, libgthread-2.0.dll | ||
libs_etc += [f for f in os.listdir(include_path) if os.path.splitext(f)[1].lower() == ".dll"] | ||
libs_etc += ['libatk-1.0-0.dll', 'libcairo-gobject-2.dll', 'libepoxy-0.dll', | ||
'libffi-6.dll', 'libfontconfig-1.dll', 'libfreetype-6.dll', 'libgailutil-3-0.dll', | ||
'libgdk-3-0.dll', 'libgdk_pixbuf-2.0-0.dll', 'libgio-2.0-0.dll', | ||
'libgirepository-1.0-1.dll', 'libglib-2.0-0.dll', 'libgmodule-2.0-0.dll', | ||
'libgobject-2.0-0.dll', 'libgthread-2.0-0.dll', 'libgtk-3-0.dll', 'libharfbuzz-0.dll', | ||
'libharfbuzz-gobject-0.dll', 'libharfbuzz-icu-0.dll', 'libintl-8.dll', 'libjasper-1.dll', | ||
'libjpeg-8.dll', 'liblcms2-2.dll', 'libopenjp2.dll', 'libpango-1.0-0.dll', | ||
'libpangocairo-1.0-0.dll', 'libpangoft2-1.0-0.dll', 'libpangowin32-1.0-0.dll', | ||
'libpng16-16.dll', 'libpoppler-glib-8.dll', 'librsvg-2-2.dll', 'libstdc++-6.dll', | ||
'libtiff-5.dll', 'libwebp-5.dll', 'libwinpthread-1.dll', 'libxmlxpat.dll', 'libzzz.dll', | ||
'python34.dll'] | ||
|
||
include_files = [(os.path.join(include_path, item), item) for item in libs_etc] | ||
|
||
|
@@ -69,10 +78,10 @@ | |
setup(name="pympress", | ||
version=version, | ||
description="A simple dual-screen PDF reader designed for presentations", | ||
author="Thomas Jost", | ||
author_email="[email protected]", | ||
author="Thomas Jost, Cimbali", | ||
author_email="[email protected]", | ||
url="http://www.pympress.org/", | ||
download_url="http://github.com/Schnouki/pympress/downloads", | ||
download_url="https://github.com/Cimbali/pympress/releases/latest", | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Environment :: X11 Applications :: GTK', | ||
|
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
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
# setup.py | ||
# | ||
# Copyright 2009 Thomas Jost <[email protected]> | ||
# Copyright 2015 Cimbali <[email protected]> | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
|
@@ -27,10 +28,10 @@ | |
setup(name="pympress", | ||
version=version, | ||
description="A simple dual-screen PDF reader designed for presentations", | ||
author="Thomas Jost", | ||
author_email="[email protected]", | ||
author="Thomas Jost, Cimbali", | ||
author_email="[email protected]", | ||
url="http://www.pympress.org/", | ||
download_url="http://github.com/Schnouki/pympress/downloads", | ||
download_url="https://github.com/Cimbali/pympress/releases/latest", | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Environment :: X11 Applications :: GTK', | ||
|