grooveondemand/pyproject.toml
2022-12-31 12:44:59 -08:00

41 lines
791 B
TOML

[tool.poetry]
name = "grooveondemand"
version = "0.10"
description = "audio playlist server"
authors = ["evilchili <evilchili@gmail.com>"]
license = "MIT License"
packages = [
{ include = 'groove' }
]
[tool.poetry.dependencies]
python = "^3.7"
bottle = "^0.12.23"
typer = "^0.7.0"
python-dotenv = "^0.21.0"
Paste = "^3.5.2"
SQLAlchemy = "^1.4.44"
python-slugify = "^7.0.0"
rich = "^12.6.0"
bottle-sqlalchemy = "^0.4.3"
music-tag = "^0.4.3"
prompt-toolkit = "^3.0.33"
PyYAML = "^6.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
pytest-asyncio = "^0.20.2"
pytest-dotenv = "^0.5.2"
boddle = "^0.2.9"
atheris = "^2.1.1"
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
groove = "groove.cli:app"