Skip to content

Commit

Permalink
Including qt.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
mottosso committed Feb 9, 2015
1 parent 93b127a commit ee9aeb6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions qt.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[Paths]
Prefix = Lib/site-packages/PyQt5
Binaries = Lib/site-packages/PyQt5
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ def get_package_data():
return package_data


def get_data_files():
return [('', ['qt.conf'])]


def get_readme():
with open('README.txt') as f:
readme = f.read()
Expand Down Expand Up @@ -66,5 +70,6 @@ def get_readme():
packages=find_packages(),
zip_safe=False,
classifiers=classifiers,
package_data=get_package_data()
)
package_data=get_package_data(),
data_files=get_data_files()
)

0 comments on commit ee9aeb6

Please sign in to comment.