forked from tweitzel/beets-recordingdate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
31 lines (28 loc) · 814 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "beets-oldestdate"
version = "1.1.4" # Also change in oldestdate.py
authors = [
{ name="kernitus" },
]
description = "Beets plugin that finds oldest possible track recording or release date"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"mediafile~=0.9",
"musicbrainzngs~=0.7",
"python-dateutil~=2.8",
"beets~=1.6",
]
[project.entry-points.beetsplug]
beets-oldestdate = "beets.oldestdate"
[project.urls]
"Homepage" = "https://github.com/kernitus/beets-oldestdate"
"Bug Tracker" = "https://github.com/kernitus/beets-oldestdate/issues"