Metadata-Version: 2.1
Name: encant
Version: 0.0.2
Summary: Uber simple python version management
Author-email: Aaron Glover <aglove2189@gmail.com>
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: loguru
Provides-Extra: dev
Requires-Dist: pre-commit ; extra == 'dev'
Requires-Dist: black ==23.9.1 ; extra == 'dev'
Requires-Dist: ruff ==0.0.292 ; extra == 'dev'

# encant: Uber Simple Python Version Management

----

Built in spite of [pyenv](https://github.com/pyenv/pyenv) and inspired by [rye](https://github.com/mitsuhiko/rye), encant does one thing and one thing only: downloads standalone python builds. Builds come from indygreg's [repo](https://github.com/indygreg/python-build-standalone).

## Usage

1. install encant
`pipx install encant`
1. install a python version (or two)

    ```bash
    $ encant 3.10
    major.minor only version detected, pulling latest: 3.10.13
    3.10.13 written to /Users/aaron/.snakes/3.10.13
    ```

That's it! You can now use python however you need to, e.g.:
`$ $HOME/.snakes/3.10.13/bin/python3 -m venv .venv`
