19 lines
454 B
TOML
19 lines
454 B
TOML
[tool.poetry]
|
|
name = "aitist"
|
|
version = "0.1.0"
|
|
description = "A new Python project managed by Poetry."
|
|
authors = ["Timothy Farrell <tim@thecookiejar.me>"]
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
fastapi = "^0.111.1"
|
|
uvicorn = {extras = ["standard"], version = "^0.17.6"}
|
|
celery = "^5.4.0"
|
|
pydantic = "^2.8.2"
|
|
pyannote-audio = "^3.3.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|