mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 06:07:04 +07:00
Each tool (uv, poetry) now has `common` and `backend` part. `common` has icons because we need them both on the front and on the back. We might need to create `front` module also if we wouldn't be able to use icons in compose. GitOrigin-RevId: 560b5aa67e4e747a1653ad6e4f780301a3fae289
28 lines
1.3 KiB
XML
28 lines
1.3 KiB
XML
<idea-plugin>
|
|
<dependencies>
|
|
<module name="intellij.python.community"/>
|
|
<module name="intellij.python.psi.impl"/>
|
|
<module name="intellij.python.sdk"/>
|
|
<plugin id="org.toml.lang"/>
|
|
<module name="intellij.python.common"/>
|
|
</dependencies>
|
|
|
|
<resource-bundle>messages.PyProjectTomlBundle</resource-bundle>
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<registryKey defaultValue="false" description="Load project structure from pyproject.toml" key="intellij.python.pyproject.model" restartRequired="true"/>
|
|
<externalSystemUnlinkedProjectAware
|
|
implementation="com.intellij.python.pyproject.model.internal.PyExternalSystemUnlinkedProjectAware"/>
|
|
|
|
<projectOpenProcessor implementation="com.intellij.python.pyproject.model.internal.PyProjectOpenProcessor"/>
|
|
|
|
<postStartupActivity implementation="com.intellij.python.pyproject.model.internal.PyProjectSyncActivity"/>
|
|
</extensions>
|
|
<actions>
|
|
<action class="com.intellij.python.pyproject.model.internal.PyProjectTomlSyncAction" id="PyProjectTomlSyncAction"/>
|
|
</actions>
|
|
<extensionPoints>
|
|
<extensionPoint qualifiedName="com.intellij.python.pyproject.model.tool" interface="com.intellij.python.pyproject.model.spi.Tool"
|
|
dynamic="true"/>
|
|
</extensionPoints>
|
|
|
|
</idea-plugin> |