mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 23:31:05 +07:00
Layout: JPS modules `intellij.python.community` `intellij.python.community.impl` `intellij.python.parser` `intellij.python.psi` `intellij.python.psi.impl` `intellij.python.ast` use package `com.jetbrains.python` and go to `intellij.python.community.impl` v2 module JPS module `intellij.python` uses package `com.intellij.python.pro` and goes to `intellij.python/pro` v2 module Both v2 modules (along with lots of others) come with `PythonId` (prof) or `PythonCore` (community) plugins DS bundles `intellij.python.community.impl` Idea and other Mini IDEs get `PythonCore` or `PythonId` plugin that bundle modules for Idea and mini IDEs GitOrigin-RevId: 98f418c52d90d51b9adf3250c561f2c36c767e2d
34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude" url="https://confluence.jetbrains.com/display/PYH/"
|
|
package="PythonCore">
|
|
<!--Python community support for Pycharm, DS and IC. Package is fake, plugin doesn't contain any classes directly-->
|
|
|
|
|
|
<id>PythonCore</id>
|
|
<name>Python Community Edition</name>
|
|
|
|
<description><![CDATA[
|
|
The Python plug-in provides smart editing for Python scripts. The feature set of the plugin
|
|
corresponds to PyCharm IDE Community Edition.
|
|
<br>
|
|
<a href="https://blog.jetbrains.com/pycharm">PyCharm blog</a><br>
|
|
<a href="https://forum.jetbrains.com/forum/PyCharm">Discussion forum</a><br>
|
|
<a href="https://youtrack.jetbrains.com/issues/PY">Issue tracker</a><br>
|
|
]]></description>
|
|
|
|
<vendor url="https://www.jetbrains.com/pycharm/">JetBrains</vendor>
|
|
|
|
<dependencies>
|
|
<plugin id="com.intellij.modules.python-core-capable"/>
|
|
</dependencies>
|
|
|
|
<!-- Python bundled modules for content -->
|
|
<xi:include href="/META-INF/python-v2-core-plugin-include.xml" xpointer="xpointer(/idea-plugin/*)"/>
|
|
<content>
|
|
<!--Mini-IDes support community python only-->
|
|
<module name="intellij.python.community.plugin.minor"/> <!-- Python for Mini-IDEs-->
|
|
<module name="intellij.python.community.plugin.minor.rider"/> <!-- Python special support for Rider -->
|
|
<module name="intellij.python.community.impl.community_only"/> <!-- Community-specific code-->
|
|
</content>
|
|
|
|
</idea-plugin>
|