-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
53 lines (47 loc) · 1.52 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "beets-audible"
version = "1.0.1"
description = "Beets plugin for audiobook management"
authors = [
{ name = "Dickson Tan", email = "[email protected]" }
]
keywords = ["beets", "audible"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Players :: MP3",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
readme = "readme.md"
requires-python = ">=3.8"
dependencies = [
"beets >=2,<3",
"markdownify >=0.14,<0.15",
"natsort >=8,<9",
"tldextract >=5,<6",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["beetsplug"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 120
[project.urls]
Homepage = "https://github.com/Neurrone/beets-audible"
Documentation = "https://github.com/Neurrone/beets-audible"
Repository = "https://github.com/Neurrone/beets-audible"
Issues = "https://github.com/Neurrone/beets-audible/issues"
Changelog = "https://github.com/Neurrone/beets-audible/blob/main/CHANGELOG.md"