MCPcopy
hub / github.com/reflex-dev/reflex / install_target

Method install_target

scripts/check_min_deps.py:140–149  ·  view source on GitHub ↗

Build the editable install target, including any extras. Returns: The path passed to ``uv pip install -e``, with ``[extra,...]`` appended.

(self)

Source from the content-addressed store, hash-verified

138 """
139
140 def install_target(self) -> str:
141 """Build the editable install target, including any extras.
142
143 Returns:
144 The path passed to ``uv pip install -e``, with ``[extra,...]`` appended.
145 """
146 target = str(self.project_dir)
147 if self.extras:
148 target += "[" + ",".join(self.extras) + "]"
149 return target
150
151
152def _load_pyproject(path: Path) -> dict:

Callers 3

_resolve_and_checkFunction · 0.80

Calls 1

joinMethod · 0.45