-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.37 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>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "akustik"
version = "0.1.0"
description = "Acoustic simulations"
readme = "README.md"
license = { file = "LICENSE.txt" }
authors = [{ name = "Tobias Hienzsch", email = "post@tobias-hienzsch.de" }]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"click>=8.1.7",
"h5py>=3.11.0",
"matplotlib>=3.9.1",
"numba>=0.60.0",
"numpy>=2.0.1",
"opencv-python>=4.10.0",
"pandas>=2.2.2",
"resampy>=0.4.3",
"scipy>=1.14.0",
"sympy>=1.13.1",
"tqdm>=4.66.5",
"xlrd",
]
[project.urls]
Homepage = "https://github.com/tobanteAudio/akustik"
Issues = "https://github.com/tobanteAudio/akustik/issues"
[project.optional-dependencies]
dev = ["conan>=2.6.0", "pre-commit>=3.8.0", "pylint>=3.2.6"]
test = ["pytest>=8.3.2", "pytest-cov>=5.0.0"]
[project.scripts]
akustik = "akustik.cli:main"
[tool.setuptools.packages.find]
where = ["src/python"]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = ["-ra", "--strict-markers", "--strict-config"]
xfail_strict = true
filterwarnings = ["error"]
testpaths = ["src/python/tests/*"]