forked from tinytag/tinytag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
91 lines (84 loc) · 2.08 KB
/
setup.cfg
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
[metadata]
name = tinytag
version = 2.0.0
author = Tom Wallroth
author_email = [email protected]
url = https://github.com/devsnd/tinytag
description = Read audio file metadata
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
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
license = MIT
license_files = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
[options]
python_requires = >= 3.7
include_package_data = True
packages = find:
install_requires =
[options.extras_require]
tests =
pycodestyle
pylint
pytest
pytest-cov
[options.entry_points]
console_scripts =
[pycodestyle]
max-line-length = 100
exclude = build/
[pylint.master]
disable =
bad-plugin-value
enable =
consider-using-augmented-assign,
use-implicit-booleaness-not-comparison-to-string
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.emptystring,
pylint.extensions.for_any_all,
pylint.extensions.dict_init_mutate,
pylint.extensions.dunder,
pylint.extensions.eq_without_hash,
pylint.extensions.overlapping_exceptions,
pylint.extensions.private_import,
pylint.extensions.set_membership,
pylint.extensions.typing
ignore-paths = build
py-version = 3.7
[pylint.format]
max-line-length = 100
[mypy]
strict = True