Skip to content

Commit

Permalink
Fixes #6
Browse files Browse the repository at this point in the history
  • Loading branch information
mottosso committed Sep 30, 2014
1 parent e14b356 commit 978468c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include qt.conf
2 changes: 1 addition & 1 deletion PyQt5/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
os.environ['QT_QPA_PLATFORM_PLUGIN_PATH'] = plugin_path

# Expose versions
version_info = (0, 1, 7) # Version of this release
version_info = (0, 1, 8) # Version of this release
version = "%s.%s.%s" % version_info
__version__ = version

Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ def get_package_data():
relpath = relpath.replace("\\", "/")
package_data['PyQt5'].append(subdir + relpath)

package_data['PyQt5'].extend(["*.exe", "*.dll", "*.pyd", "*.conf"])
package_data['PyQt5'].extend(["*.exe",
"*.dll",
"*.pyd",
"*.conf"])
return package_data


Expand Down

0 comments on commit 978468c

Please sign in to comment.