From 825c7f4b653ffe83b68800bc6d76f4b2b2980b43 Mon Sep 17 00:00:00 2001 From: Steven Murray Date: Tue, 11 Jul 2023 12:52:18 -0700 Subject: [PATCH] build: add beets as a dep --- pyproject.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 830e4e2..37fa234 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,9 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", ] +dependencies = [ + 'beets>=1.5.0', +] dynamic = ["version"] [project.urls] @@ -48,7 +51,11 @@ Repository = "https://github.com/steven-murray/beet-summarize" Changelog = "https://github.com/steven-murray/beet-summarize/releases" [project.optional-dependencies] -tests = ["pytest"] +tests = [ + "pytest", + "pytest-cov" +] + dev = [ "pre-commit", "summarize[tests]",