8
edits
Changes
skeleton of uv
** [https://github.com/psf/black black] code formatter
** [https://docs.astral.sh/ruff/ ruff] alternative to flake8
==== uv ====
To get started with <code>uv</code>, pick a directory you want your virtual environment to live in. (<code>$HOME</code> is not recommended.) Once you have <code>cd</code>ed there, run
<syntaxhighlight lang="bash">
uv venv
</syntaxhighlight>
To activate your virtual environment, run
<syntaxhighlight lang="bash">
source .venv/bin/activate
</syntaxhighlight>
*while in the directory you created your <code>.venv</code> in*.
=== Installing Starter Project ===