forked from python-acoustics/python-acoustics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (55 loc) · 1.41 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
58
59
60
61
62
[build-system]
requires = ["flit_core>=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "acoustic-toolbox"
version = "0.1.1"
authors = [
{ name = "Valentin LE BESCOND", email = "[email protected]" },
{ name = "Andrew Mitchell", email = "[email protected]"}
]
description = "Acoustic Toolbox module for Python."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.23.5",
"scipy>=1.14.0",
"matplotlib>=3.9.1",
"six>=1.16.0",
"pandas>=2.2.2",
"tabulate>=0.9.0",
"pysoundfile>=0.9.0.post1",
]
[project.license]
file = "LICENSE"
[project.urls]
"Homepage" = "https://github.com/Universite-Gustave-Eiffel/acoustic-toolbox"
"Bug Tracker" = "https://github.com/Universite-Gustave-Eiffel/acoustic-toolbox/issues"
[project.optional-dependencies]
docs = [
"sphinx-rtd-theme==1.3.0rc1",
"sphinx>=1.6, <8",
"nbsphinx>=0.9.4",
"nbsphinx-link>=1.3.0",
"jupyter>=1.0.0",
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.9",
"mkdocs-include-markdown-plugin>=6.0.4",
"mkdocs-exclude>=1.0.2",
"mkdocs-macros-plugin>=1.0.4",
"mkdocstrings[python]>=0.26.2",
]
[tool.flit.sdist]
include = ["tests/"]
[tool.uv]
dev-dependencies = [
"ruff>=0.5.5",
"pytest>=8.3.2",
"coverage>=7.6.0",
]
[tool.uv.pip]
universal = true