27 lines
474 B
TOML
27 lines
474 B
TOML
[project]
|
|
name = "demucs-server"
|
|
version = "0.1.0"
|
|
description = "Add a short description here"
|
|
dependencies = [
|
|
"demucs>=4.0.0",
|
|
"flask>=2.3.2",
|
|
"gunicorn>=20.1.0",
|
|
"colorama>=0.4.6",
|
|
"ipython>=8.12.2",
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">= 3.8"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.rye]
|
|
managed = true
|
|
dev-dependencies = [
|
|
"black>=23.3.0",
|
|
]
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|