Add license and readme

This commit is contained in:
2026-05-28 20:54:09 -05:00
parent 4bba36ce6a
commit fa06e31b42
2 changed files with 37 additions and 0 deletions

15
README.md Normal file
View File

@@ -0,0 +1,15 @@
# Transcribble
A scribble of a python script for audio transcription
## Setup
1. Install [python](https://www.python.org/downloads/)
2. Set up a virtual environment (optional)
- `python -m venv .venv`
- POSIX: `. .venv/bin/activate`
- Windows (PowerShell): `.venv\Scripts\Activate.ps1`
- If PowerShell refuses with “running scripts is disabled on this system,” run
`Set-ExecutionPolicy -Scope CurrentUser RemoteSigned` once, then try activation again.
- Windows (cmd.exe): `venv\Scripts\activate.bat`
3. Install dependences: `pip install -r requirements.txt`