File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 31
31
os .environ ['QT_QPA_PLATFORM_PLUGIN_PATH' ] = plugin_path
32
32
33
33
# Expose versions
34
- version_info = (0 , 1 , 2 ) # Version of this release
34
+ version_info = (0 , 1 , 3 ) # Version of this release
35
35
version = "%s.%s.%s" % version_info
36
36
__version__ = version
37
37
Original file line number Diff line number Diff line change
1
+ [Paths]
2
+ Prefix = C:/Python27/Lib/site-packages/PyQt5
3
+ Binaries = C:/Python27/Lib/site-packages/PyQt5
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ def get_version():
12
12
13
13
14
14
def get_package_data ():
15
+ """Include all files from all sub-directories"""
15
16
package_data = dict ()
16
17
17
18
package_data ['PyQt5' ] = list ()
@@ -28,6 +29,10 @@ def get_package_data():
28
29
return package_data
29
30
30
31
32
+ def get_data_files ():
33
+ return [('' , ['qt.conf' ])]
34
+
35
+
31
36
def get_readme ():
32
37
with open ('README.txt' ) as f :
33
38
readme = f .read ()
@@ -58,5 +63,6 @@ def get_readme():
58
63
packages = find_packages (),
59
64
zip_safe = False ,
60
65
classifiers = classifiers ,
61
- package_data = get_package_data ()
66
+ package_data = get_package_data (),
67
+ data_files = get_data_files ()
62
68
)
You can’t perform that action at this time.
0 commit comments