Metadata-Version: 2.4
Name: speechreclib
Version: 0.1.1
Summary: 
Author: avdonin.pb@yandex.ru
Requires-Python: >=3.10,<3.14
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Provides-Extra: dev
Requires-Dist: openai-whisper (>=20250625,<20250626)
Requires-Dist: pytest (>=8.4.2,<9.0.0) ; extra == "dev"
Requires-Dist: pytest-cov (>=6.0.0,<7.0.0) ; extra == "dev"
Requires-Dist: soundfile (>=0.13.1,<0.14.0)
Requires-Dist: torchaudio (>=2.8.0,<3.0.0)
Requires-Dist: tox (>=4.0.0,<5.0.0) ; extra == "dev"
Requires-Dist: transformers (>=4.56.2,<5.0.0)
Description-Content-Type: text/markdown

# Speech Recognition Module

## Установка зависимостей

```sh
poetry env use 3.10 && poetry install
```

## Запуск сервера

```sh
poetry run uvicorn speechrec.server:app --host 0.0.0.0 --port 8000
```

## Тестирование

### Юнит-тесты

```sh
tox
```

