Files
openide/python/ide/resources/META-INF/plugin.xml
Ilya.Kazakevich 2d4b57a8bf DS-1170: Jupyter in community.
Extract jupyter language to ``intellij.jupyter.core``.
It now has ``jupyter-core.xml`` with language only and ``jupyter-core-view-only.xml`` to be included in community versions.
It also provides framework to show jupyter using web applications

GitOrigin-RevId: fa80df820adab872768dc28ce567c7a86a2b552d
2021-10-20 18:01:10 +00:00

28 lines
1.5 KiB
XML

<!-- Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
<name>PyCharm Community Customization</name>
<id>com.jetbrains.pycharm.community.customization</id>
<vendor>JetBrains</vendor>
<resource-bundle>messages.ActionsBundle</resource-bundle>
<depends>com.intellij.modules.pycharm.community</depends>
<depends>com.intellij.modules.python</depends>
<xi:include href="/META-INF/pycharm-community-customization.xml"/>
<xi:include href="/META-INF/tips-pycharm-community.xml"/>
<xi:include href="/META-INF/jupyter-view-only.xml"/>
<extensions defaultExtensionNs="com.intellij">
<applicationInitializedListener implementation="com.jetbrains.python.PyCharmCorePluginConfigurator"/>
<projectService serviceInterface="com.intellij.psi.search.ProjectScopeBuilder"
serviceImplementation="com.jetbrains.python.psi.search.PyProjectScopeBuilder"
overrides="true"/>
<annotator language="Python" implementationClass="com.jetbrains.python.PyCharmProfessionalAdvertiser"/>
<annotator language="TEXT" implementationClass="com.jetbrains.python.PyCharmProfessionalAdvertiser"/>
<annotator language="JSON" implementationClass="com.jetbrains.python.PyCharmProfessionalAdvertiser"/>
<projectService serviceImplementation="com.jetbrains.python.PyCharmProfessionalAdvertiserSettings"/>
</extensions>
</idea-plugin>