Skip to content

Commit ee9aeb6

Browse files
committedFeb 9, 2015
Including qt.conf
1 parent 93b127a commit ee9aeb6

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed
 

‎qt.conf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[Paths]
2+
Prefix = Lib/site-packages/PyQt5
3+
Binaries = Lib/site-packages/PyQt5

‎setup.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ def get_package_data():
3636
return package_data
3737

3838

39+
def get_data_files():
40+
return [('', ['qt.conf'])]
41+
42+
3943
def get_readme():
4044
with open('README.txt') as f:
4145
readme = f.read()
@@ -66,5 +70,6 @@ def get_readme():
6670
packages=find_packages(),
6771
zip_safe=False,
6872
classifiers=classifiers,
69-
package_data=get_package_data()
70-
)
73+
package_data=get_package_data(),
74+
data_files=get_data_files()
75+
)

0 commit comments

Comments
 (0)
Please sign in to comment.