22 lines
424 B
TOML
22 lines
424 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "music-server"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi==0.115.0",
|
|
"uvicorn==0.32.0",
|
|
"httpx==0.27.2",
|
|
"itsdangerous==2.2.0",
|
|
"python-multipart==0.0.20",
|
|
"cryptography==43.0.3",
|
|
"paramiko==3.5.0",
|
|
"boto3==1.35.36",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|