-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (83 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
101 lines (83 loc) · 1.99 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
[project]
name = "irdl"
version = "1.0.0b1"
description = "Python package to download, unpack and process impulse response datasets."
readme = "README.md"
authors = [
{ name = "Art Pelling", email = "a.pelling@tu-berlin.de" },
{ name = "Siavash Zaid", email = "siavash.zaid@campus.tu-berlin.de" },
]
requires-python = ">=3.11"
license = {file = "LICENSE"}
keywords = [
"impulse response",
"downloader",
"head-related",
"room",
"acoustics",
"benchmark",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"h5py>=3.15.1",
"numpydoc>=1.10.0",
"pooch>=1.8.2",
"pyfar>=0.7.3",
"rich>=13.0.0",
"typer>=0.17.4",
"psutil>=7.0.0",
]
[dependency-groups]
docs = [
"pydata-sphinx-theme>=0.16.1",
"sphinx>=9.0.4",
"sphinx-click>=6.2.0",
"sphinx-copybutton>=0.5.2",
]
lint = ["ruff==0.14.14"]
dev = [
{include-group = "docs"},
{include-group = "lint"},
]
[project.scripts]
irdl = "irdl.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = ["irdl"]
[tool.hatch.build.targets.wheel]
package = ["irdl"]
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple/"
publish-url = "https://upload.pypi.org/legacy/"
explicit = true
[tool.basedpyright]
venv = ".venv"
typeCheckingMode = 'off'
[tool.ruff]
src = ["src"]
exclude = ["src/irdl/repositories.py"]
line-length = 120
[tool.ruff.format]
quote-style = "double"
[tool.ruff.lint]
select = ["B", "D", "E", "F", "I", "ICN", "N", "Q", "W"]
ignore = [
"D100", "D104", "D401",
"N803",
]
[tool.ruff.lint.pycodestyle]
max-doc-length = 100
[tool.ruff.lint.pydocstyle]
convention = "numpy"