update docs and examples for pyproject

setup.py -> pyproject.toml
venv -> .venv
This commit is contained in:
David Lord 2023-01-18 10:21:37 -08:00
parent 6d6d986fc5
commit 8f13f5b6d6
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
24 changed files with 153 additions and 195 deletions

View file

@ -102,14 +102,14 @@ First time setup
.. code-block:: text
$ python3 -m venv env
$ . env/bin/activate
$ python3 -m venv .venv
$ . .venv/bin/activate
- Windows
.. code-block:: text
> py -3 -m venv env
> py -3 -m venv .venv
> env\Scripts\activate
- Upgrade pip and setuptools.