-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.49 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
56
57
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "lupy"
version = "0.0.1"
authors = [
{name = "Matthew Reid", email = "[email protected]"}
]
description = "Python library for Audio Loudness measurements"
readme = "README.rst"
license = { file = "LICENSE" }
keywords = [
"audio", "loudness", "r128", "ebur128",
"bs1770", "bs1771", "tech3341", "tech3342"
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy",
"scipy",
"typing-extensions; python_version<'3.11'"
]
[project.urls]
Homepage = "https://github.com/nocarryr/lupy"
Documentation = "https://lupy-nocarryr.readthedocs.io/"
[project.optional-dependencies]
tests = ["pytest", "pytest-xdist"]
docs = ["sphinx", "furo"]
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*"]
[tool.pytest.ini_options]
addopts = "-n auto"
testpaths = ["tests"]