mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 10:39:51 +07:00
This service is aimed to substitute various SDK-management tools in PyCharm. Begin with `InterpreterService()` function. GitOrigin-RevId: 368d56c4a78812fe81de941e5e5ce61a56d385e6
21 lines
853 B
XML
21 lines
853 B
XML
<idea-plugin>
|
|
<dependencies>
|
|
<module name="intellij.python.community.services.shared"/>
|
|
<module name="intellij.python.sdk"/>
|
|
<module name="intellij.python.psi.impl"/>
|
|
<module name="intellij.python.community.execService.python"/>
|
|
<module name="intellij.python.community.execService"/>
|
|
<module name="intellij.python.parser"/>
|
|
<module name="intellij.python.community"/>
|
|
</dependencies>
|
|
|
|
<extensionPoints>
|
|
<extensionPoint qualifiedName="Pythonid.interpreterProvider"
|
|
dynamic="true"
|
|
interface="com.intellij.python.community.interpreters.spi.InterpreterProvider"/>
|
|
</extensionPoints>
|
|
<extensions defaultExtensionNs="Pythonid">
|
|
<interpreterProvider implementation="com.intellij.python.community.interpreters.impl.VanillaInterpreterProvider"/>
|
|
</extensions>
|
|
</idea-plugin>
|