grooveondemand/pyproject.toml

40 lines
777 B
TOML
Raw Normal View History

[tool.poetry]
name = "grooveondemand"
version = "0.1.0"
description = "audio playlist server"
authors = ["evilchili <evilchili@gmail.com>"]
license = "MIT License"
packages = [
{ include = 'groove' }
]
[tool.poetry.dependencies]
python = "^3.10"
bottle = "^0.12.23"
typer = "^0.7.0"
python-dotenv = "^0.21.0"
Paste = "^3.5.2"
2022-11-20 01:00:54 -08:00
SQLAlchemy = "^1.4.44"
python-slugify = "^7.0.0"
rich = "^12.6.0"
bottle-sqlalchemy = "^0.4.3"
2022-11-27 18:42:46 -08:00
music-tag = "^0.4.3"
prompt-toolkit = "^3.0.33"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
pytest-asyncio = "^0.20.2"
pytest-dotenv = "^0.5.2"
boddle = "^0.2.9"
2022-11-19 16:58:58 -08:00
atheris = "^2.1.1"
2022-11-19 17:23:47 -08:00
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"