-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (62 loc) · 1.78 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (62 loc) · 1.78 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "mutagen"
version = "1.48.1"
description = "read and write audio tags for many formats"
readme = { file = "README.rst", content-type = "text/x-rst" }
authors = [{ name = "Christoph Reiter", email = "reiter.christoph@gmail.com" }]
license = "GPL-2.0-or-later"
requires-python = ">=3.10, <4"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Multimedia :: Sound/Audio",
]
[project.urls]
Homepage = "https://mutagen.readthedocs.io"
Repository = "https://github.com/quodlibet/mutagen"
[project.scripts]
mid3cp = "mutagen._tools.mid3cp:entry_point"
mid3iconv = "mutagen._tools.mid3iconv:entry_point"
mid3v2 = "mutagen._tools.mid3v2:entry_point"
moggsplit = "mutagen._tools.moggsplit:entry_point"
mutagen-inspect = "mutagen._tools.mutagen_inspect:entry_point"
mutagen-pony = "mutagen._tools.mutagen_pony:entry_point"
[dependency-groups]
dev = [
"pytest>=8.2,<10",
"hypothesis>=6.50.1,<7",
"flake8>=7.1.0,<8",
"mypy==1.18.2",
"coverage>=7.2.5,<8",
"setuptools>=77.0.0,<84",
]
fuzzing = ["python-afl>=0.7.3,<0.8"]
docs = [
"Sphinx~=7.1",
"sphinx-rtd-theme>=2.0.0,<3",
"sphinx-autobuild>=2021.3.14,<2022",
]
[tool.poetry.group.fuzzing]
optional = true
[tool.poetry.group.docs]
optional = true
[tool.setuptools]
packages = [
"mutagen",
"mutagen.id3",
"mutagen.mp4",
"mutagen.asf",
"mutagen.mp3",
"mutagen._tools",
]
[tool.setuptools.package-data]
mutagen = ["py.typed"]
[tool.setuptools.data-files]
"share/man/man1" = ["man/*.1"]
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[tool.coverage.run]
include=["mutagen/*", "tests/*"]