setup.py

changeset 7715
ae49e290890d
parent 7657
428836188b88
child 7732
4c9cf117acf6
equal deleted inserted replaced
7714:79bde78e3e16 7715:ae49e290890d
51 @param extensions list of extensions to test for 51 @param extensions list of extensions to test for
52 @type list of str 52 @type list of str
53 @return list of package data files 53 @return list of package data files
54 @rtype list of str 54 @rtype list of str
55 """ 55 """
56 print(extensions)
56 filesList = [] 57 filesList = []
57 for dirpath, _dirnames, filenames in os.walk(package): 58 for dirpath, _dirnames, filenames in os.walk(package):
58 for fname in filenames: 59 for fname in filenames:
59 if ( 60 if (
60 not fname.startswith('.') and 61 not fname.startswith('.') and
322 package_data={ 323 package_data={
323 "": getPackageData( 324 "": getPackageData(
324 "eric6", 325 "eric6",
325 [".png", ".svg", ".svgz", ".xpm", ".ico", ".gif", ".icns", ".txt", 326 [".png", ".svg", ".svgz", ".xpm", ".ico", ".gif", ".icns", ".txt",
326 ".tmpl", ".html", ".qch", ".css", ".qss", ".e4h", ".e6h", ".api", 327 ".tmpl", ".html", ".qch", ".css", ".qss", ".e4h", ".e6h", ".api",
327 ".bas" ".dat"] 328 ".bas", ".dat", ".xbel", ".xml", ".js"]
328 ) + ["i18n/eric6_de.qm", "i18n/eric6_en.qm", "i18n/eric6_es.qm", 329 ) + ["i18n/eric6_de.qm", "i18n/eric6_en.qm", "i18n/eric6_es.qm",
329 "i18n/eric6_ru.qm", 330 "i18n/eric6_ru.qm",
330 ] 331 ]
331 }, 332 },
332 entry_points={ 333 entry_points={

eric ide

mercurial