112 longDescription = f.read() |
112 longDescription = f.read() |
113 |
113 |
114 if not longDescription: |
114 if not longDescription: |
115 longDescription = ( |
115 longDescription = ( |
116 "eric is an integrated development environment for the Python" |
116 "eric is an integrated development environment for the Python" |
117 " programming language. It uses the PyQt5 bindings and the" |
117 " programming language. It uses the PyQt6 bindings and the" |
118 " QScintilla2 editor widget. See" |
118 " QScintilla2 editor widget. See" |
119 " https://eric-ide.python-projects.org for more details." |
119 " https://eric-ide.python-projects.org for more details." |
120 ) |
120 ) |
121 |
121 |
122 return longDescription |
122 return longDescription |
334 keywords="Development PyQt5 IDE Python3", |
334 keywords="Development PyQt5 IDE Python3", |
335 python_requires=">=3.6", |
335 python_requires=">=3.6", |
336 install_requires=[ |
336 install_requires=[ |
337 "pip>=19.0", |
337 "pip>=19.0", |
338 "wheel", |
338 "wheel", |
339 "PyQt5>=5.12.1,<5.15.2", |
339 "PyQt6>=6.1.1", |
340 "PyQtChart>=5.12.1,<5.15.2", |
340 "PyQt6-Charts>=6.1.0", |
341 "PyQtWebEngine>=5.12.1,<5.15.2", |
341 #~ "PyQt6-WebEngine>=6.2.0", |
342 "QScintilla>=2.11.1", |
342 "PyQt6-QScintilla>=2.12.2", |
343 "docutils", |
343 "docutils", |
344 "Markdown", |
344 "Markdown", |
345 "pyyaml", |
345 "pyyaml", |
346 "toml", |
346 "toml", |
347 "chardet", |
347 "chardet", |
367 ] |
367 ] |
368 }, |
368 }, |
369 entry_points={ |
369 entry_points={ |
370 "gui_scripts": [ |
370 "gui_scripts": [ |
371 "eric7 = eric7.eric7:main", |
371 "eric7 = eric7.eric7:main", |
372 "eric7_browser = eric7.eric7_browser:main", |
372 #~ "eric7_browser = eric7.eric7_browser:main", |
373 "eric7_compare = eric7.eric7_compare:main", |
373 "eric7_compare = eric7.eric7_compare:main", |
374 "eric7_configure = eric7.eric7_configure:main", |
374 "eric7_configure = eric7.eric7_configure:main", |
375 "eric7_diff = eric7.eric7_diff:main", |
375 "eric7_diff = eric7.eric7_diff:main", |
376 "eric7_editor = eric7.eric7_editor:main", |
376 "eric7_editor = eric7.eric7_editor:main", |
377 "eric7_hexeditor = eric7.eric7_hexeditor:main", |
377 "eric7_hexeditor = eric7.eric7_hexeditor:main", |