forked from tinytag/tinytag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
127 lines (118 loc) · 3.05 KB
/
pyproject.toml
File metadata and controls
127 lines (118 loc) · 3.05 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# SPDX-FileCopyrightText: 2024 tinytag Contributors
# SPDX-License-Identifier: MIT
[build-system]
requires = ["flit_core>=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "tinytag"
description = "Read audio file metadata"
authors = [
{name = "Tom Wallroth"},
{name = "Mat (mathiascode)"}
]
keywords = [
"metadata",
"audio",
"music",
"mp3",
"m4a",
"wav",
"ogg",
"opus",
"flac",
"wma",
"aiff"
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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 :: 3.13",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Typing :: Typed"
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.7"
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/tinytag/tinytag"
[project.optional-dependencies]
tests = [
"coverage",
"mypy",
"pycodestyle",
"pylint",
"pyright"
]
[tool.flit.sdist]
exclude = [
".gitignore",
".github/",
"tinytag/icons/",
"tinytag/tests/"
]
[tool.pylint.master]
disable = [
"invalid-name",
"too-many-arguments",
"too-many-boolean-expressions",
"too-many-branches",
"too-many-instance-attributes",
"too-many-lines",
"too-many-locals",
"too-many-positional-arguments",
"too-many-nested-blocks",
"too-many-return-statements",
"too-many-statements",
"too-few-public-methods",
"unknown-option-value"
]
enable = [
"consider-using-augmented-assign"
]
load-plugins = [
"pylint.extensions.bad_builtin",
"pylint.extensions.check_elif",
"pylint.extensions.code_style",
"pylint.extensions.comparison_placement",
"pylint.extensions.consider_refactoring_into_while_condition",
"pylint.extensions.consider_ternary_expression",
"pylint.extensions.dict_init_mutate",
"pylint.extensions.docstyle",
"pylint.extensions.dunder",
"pylint.extensions.empty_comment",
"pylint.extensions.eq_without_hash",
"pylint.extensions.for_any_all",
"pylint.extensions.no_self_use",
"pylint.extensions.overlapping_exceptions",
"pylint.extensions.private_import",
"pylint.extensions.redefined_loop_name",
"pylint.extensions.redefined_variable_type",
"pylint.extensions.set_membership",
"pylint.extensions.typing"
]
py-version = "3.7"
[tool.mypy]
strict = true
[tool.coverage.report]
exclude_lines = [
"if TYPE_CHECKING:"
]
precision = 2
show_missing = true
[tool.coverage.run]
relative_files = true