Files
openide/python/python-pyproject/resources/intellij.python.pyproject.xml
Ilya.Kazakevich 3da2fb2642 PY-87021: (Part 1, TBC): Postpone project rebuild until project generation finished and transfer run config. settings
1. Project rebuild process disposes modules and kills `PyV3` project generation (i.e. Django). We now skip autoimport for newly generated projects, and PyV3 calls `startAutoImportIfNeeded` after project generation.

2. EP introduced to update run configurations when module gets renamed.

GitOrigin-RevId: 55183da9c1f9d1e96e837e970254443fbaec6b5e
2026-02-05 21:31:45 +00:00

25 lines
1.2 KiB
XML

<idea-plugin visibility="internal">
<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="true" description="Load project structure from pyproject.toml" key="intellij.python.pyproject.model"
restartRequired="true"/>
<postStartupActivity implementation="com.intellij.python.pyproject.model.internal.platformBridge.PyProjectSyncActivity"/>
<statistics.projectUsagesCollector implementation="com.intellij.python.pyproject.statistics.PythonTomlStatsUsagesCollector"/>
</extensions>
<extensionPoints>
<extensionPoint qualifiedName="com.intellij.python.pyproject.model.tool" interface="com.intellij.python.pyproject.model.spi.Tool"
dynamic="true"/>
<extensionPoint qualifiedName="com.intellij.python.pyproject.model.moduleDataTransfer"
interface="com.intellij.python.pyproject.model.spi.PyModuleDataTransfer" dynamic="true"/>
</extensionPoints>
</idea-plugin>