mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +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: b5662fbdf3d23f1ddaa5926469d1cfd2051a0fba
15 lines
562 B
XML
15 lines
562 B
XML
<idea-plugin>
|
|
<dependencies>
|
|
<module name="intellij.python.sdk"/>
|
|
<module name="intellij.toml.core"/>
|
|
<module name="intellij.python.community"/>
|
|
<module name="intellij.python.pyproject"/>
|
|
<module name="intellij.python.common"/>
|
|
<module name="intellij.python.community.impl.uv.common"/>
|
|
<module name="intellij.platform.backend"/>
|
|
</dependencies>
|
|
<extensions defaultExtensionNs="com.intellij.python.pyproject.model">
|
|
<tool implementation="com.intellij.python.community.impl.uv.backend.UvTool"/>
|
|
</extensions>
|
|
</idea-plugin>
|