65 filesList.append( |
65 filesList.append( |
66 os.path.relpath(os.path.join(dirpath, fname), package)) |
66 os.path.relpath(os.path.join(dirpath, fname), package)) |
67 return filesList |
67 return filesList |
68 |
68 |
69 |
69 |
70 # TODO: add .desktop files for the eric6 tools |
70 # TODO: add .desktop files for the eric tools |
71 def getDataFiles(): |
71 def getDataFiles(): |
72 """ |
72 """ |
73 Function to return data_files in a platform dependent manner. |
73 Function to return data_files in a platform dependent manner. |
74 |
74 |
75 @return list containing the platform specific data files |
75 @return list containing the platform specific data files |
110 "r") as f: |
110 "r") as f: |
111 longDescription = f.read() |
111 longDescription = f.read() |
112 |
112 |
113 if not longDescription: |
113 if not longDescription: |
114 longDescription = ( |
114 longDescription = ( |
115 "eric6 is an integrated development environment for the Python" |
115 "eric is an integrated development environment for the Python" |
116 " programming language. It uses the PyQt5 bindings and the" |
116 " programming language. It uses the PyQt5 bindings and the" |
117 " QScintilla2 editor widget. See" |
117 " QScintilla2 editor widget. See" |
118 " https://eric-ide.python-projects.org for more details." |
118 " https://eric-ide.python-projects.org for more details." |
119 ) |
119 ) |
120 |
120 |