Skip to content

Commit

Permalink
build: move metadata to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanljones committed Oct 20, 2023
1 parent da5edc6 commit dffbacd
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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 -----------------------------------------------------------------------------

Expand All @@ -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"
Expand Down Expand Up @@ -108,7 +107,6 @@ add_ignore = [
branch = true
source = ["pyrekordbox"]


[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
Expand Down

0 comments on commit dffbacd

Please sign in to comment.