From dffbacd7d360c21c8a5a7a589489a8eeda1d4f20 Mon Sep 17 00:00:00 2001 From: dylanljones Date: Fri, 20 Oct 2023 17:23:19 +0200 Subject: [PATCH] build: move metadata to pyproject.toml --- pyproject.toml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6eabc3f..a854bb6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,11 +41,6 @@ dependencies = [ "setuptools-scm[toml]>=4", "sqlalchemy>=2.0.0", ] -packages = "find" -platforms = ["any"] -zip-safe = false -include-package-data = true - [project.optional-dependencies] build = [ @@ -56,12 +51,17 @@ test = [ "wheel>=0.37.0", ] - [project.urls] Source = "https://github.com/dylanljones/pyrekordbox" Documentation = "https://pyrekordbox.readthedocs.io/en/stable/" Tracker = "https://github.com/dylanljones/pyrekordbox/issues" +[tool.setuptools] +packages = "find" +platforms = ["any"] +zip-safe = false +include-package-data = true + # -- Build ----------------------------------------------------------------------------- @@ -74,7 +74,6 @@ requires = [ ] build-backend = "setuptools.build_meta" - [tool.setuptools_scm] write_to = "pyrekordbox/_version.py" git_describe_command = "git describe --dirty --tags --long --match * --first-parent" @@ -108,7 +107,6 @@ add_ignore = [ branch = true source = ["pyrekordbox"] - [tool.coverage.report] exclude_lines = [ "pragma: no cover",