forked from simon-r/dr14_t.meter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.43 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
54
55
[build-system]
#requires = ["setuptools>=42", "wheel"]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "dr14meter"
version = "1.1.4"
description = "Compute the dynamic range DR14 value of the given audio files"
keywords = ["dr14", "dynamic range", 'loudness war']
authors = [
{ name = "pe7ro", email = "44572319+pe7ro@users.noreply.github.com" }
]
readme = "README.md"
requires-python = ">=3.6"
# https://devguide.python.org/versions/
license = { text = "GPL-3.0+" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio :: Analysis"
]
dependencies = [
"numpy",
'mutagen',
]
[project.optional-dependencies]
plot = [
"matplotlib>=2",
'scipy',
]
# matplotlib 3.9.3
# mutagen 1.47.0
# numpy 2.1.3
# scipy 1.13.1
[project.urls]
"Homepage" = "https://github.com/pe7ro/dr14meter"
"Bug Reports" = "https://github.com/pe7ro/dr14meter/issues"
"Source" = "https://github.com/pe7ro/dr14meter"
[project.scripts]
dr14meter = "dr14meter.__main__:main"
#[tool.setuptools]
#packages = ["dr14tmeter"]
#scripts = ["dr14tmeter"]