mirror of
https://github.com/harivansh-afk/sep.git
synced 2026-04-15 12:03:53 +00:00
37 lines
738 B
TOML
37 lines
738 B
TOML
[project]
|
|
name = "audio-separator-api"
|
|
version = "1.0.0"
|
|
description = "API service for audio stem separation using ML models"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"audio-separator>=0.35",
|
|
"fastapi>=0.109.0",
|
|
"uvicorn[standard]>=0.27.0",
|
|
"python-multipart>=0.0.6",
|
|
"pydantic>=2.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
api = [
|
|
"fastapi>=0.109.0",
|
|
"uvicorn[standard]>=0.27.0",
|
|
"python-multipart>=0.0.6",
|
|
"pydantic>=2.0.0",
|
|
]
|
|
dev = [
|
|
"pytest>=8.0.0",
|
|
"httpx>=0.26.0",
|
|
"ruff>=0.1.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py310"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "W"]
|