Skip to content
Snippets Groups Projects
Select Git revision
  • 2a0ba5ebda64f1c4393cf24428a9f332daa5bdde
  • main default protected
2 results

pyproject.toml

Blame
  • pyproject.toml 1.93 KiB
    [tool.poetry]
    name = "whisper-asr-webservice"
    version = "1.2.4-dev"
    description = "Whisper ASR Webservice is a general-purpose speech recognition webservice."
    homepage  = "https://github.com/ahmetoner/whisper-asr-webservice/"
    license = "https://github.com/ahmetoner/whisper-asr-webservice/blob/main/LICENCE"
    authors = [
        "Ahmet Öner",
        "Besim Alibegovic",
    ]
    readme = "README.md"
    packages = [{ include = "app" }]
    
    [[tool.poetry.source]]
    name = "pytorch"
    url = "https://download.pytorch.org/whl/cpu"
    priority = "explicit"
    
    [tool.poetry.dependencies]
    python = "^3.10"
    uvicorn = { extras = ["standard"], version = "^0.23.2" }
    gunicorn = "^21.0.1"
    tqdm = "^4.66.1"
    python-multipart = "^0.0.6"
    ffmpeg-python = "^0.2.0"
    fastapi = "^0.104.1"
    llvmlite = "^0.41.1"
    numba = "^0.58.0"
    openai-whisper = "20231106"
    faster-whisper = "^0.9.0"
    torch = [
      {markers = "sys_platform == 'darwin' and platform_machine == 'arm64'", url = "https://download.pytorch.org/whl/cpu/torch-1.13.0-cp310-none-macosx_11_0_arm64.whl"},
      {markers = "sys_platform == 'linux' and platform_machine == 'arm64'", url="https://download.pytorch.org/whl/cpu/torch-1.13.0-cp310-none-macosx_11_0_arm64.whl"},
      {markers = "sys_platform == 'darwin' and platform_machine == 'x86_64'", url = "https://download.pytorch.org/whl/cpu/torch-1.13.0-cp310-none-macosx_10_9_x86_64.whl"},
      {markers = "sys_platform == 'linux' and platform_machine == 'aarch64'", url="https://download.pytorch.org/whl/torch-1.13.0-cp310-cp310-manylinux2014_aarch64.whl"},
      {markers = "sys_platform == 'linux' and platform_machine == 'x86_64'", url="https://download.pytorch.org/whl/cpu/torch-1.13.0%2Bcpu-cp310-cp310-linux_x86_64.whl"},
      {markers = "sys_platform == 'win' and platform_machine == 'amd64'", url="https://download.pytorch.org/whl/cpu/torch-1.13.0%2Bcpu-cp310-cp310-win_amd64.whl"},
    ]
    
    [tool.poetry.dev-dependencies]
    pytest = "^6.2.5"
    
    [build-system]
    requires = ["poetry-core>=1.0.0"]
    build-backend = "poetry.core.masonry.api"