https://github.com/joaopalmeiro/terminal-metadata
Metadata about terminals to reuse in different projects.
https://github.com/joaopalmeiro/terminal-metadata
Last synced: about 1 month ago
JSON representation
Metadata about terminals to reuse in different projects.
- Host: GitHub
- URL: https://github.com/joaopalmeiro/terminal-metadata
- Owner: joaopalmeiro
- License: mit
- Created: 2024-08-17T15:35:15.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-08-19T06:38:45.000Z (9 months ago)
- Last Synced: 2025-01-31T07:12:07.992Z (3 months ago)
- Language: Python
- Size: 572 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terminal-metadata
[](https://github.com/astral-sh/uv)
[](https://github.com/astral-sh/ruff)Metadata about terminals to reuse in different projects.
## Development
Install [pyenv](https://github.com/pyenv/pyenv) (if necessary).
```bash
pyenv install && pyenv versions
``````bash
pip install uv==0.2.28 && uv --version
``````bash
uv venv .venv --verbose
``````bash
source .venv/bin/activate
``````bash
which python && python --version
``````bash
uv pip install -r requirements.txt
``````bash
uv pip list --strict
``````bash
uv pip check --verbose
``````bash
uv pip tree --show-version-specifiers --strict
``````bash
ruff check
``````bash
mypy
``````bash
ruff check --fix
``````bash
ruff format
``````bash
python 01.py
``````bash
deactivate
```