-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
38 lines (34 loc) · 1 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
[project]
name = "psiaudio"
description = "Audio tools supporting psiexperiment"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "license.txt"}
authors = [
{name = "Brad Buran", email="[email protected]"},
{name = "Buran Consulting, LLC", email="[email protected]"}
]
maintainers = [
{name = "Brad Buran", email="[email protected]"},
{name = "Buran Consulting, LLC", email="[email protected]"}
]
dependencies = [
"numpy",
"scipy",
"pandas",
"matplotlib",
]
dynamic = ["version"]
[project.optional-dependencies]
examples = ["sounddevice"]
docs = ["sphinx", "sphinx_gallery", "sphinx_rtd_theme", "pygments-enaml", "sounddevice"]
test = ["pytest", "pytest-benchmark", "pytest-xdist"]
[build-system]
requires = ["setuptools>=61.2", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "psiaudio/version.py"
[tool.pytest.ini_options]
markers = [
"slow: runs tests that will otherwise be skipped because they are slow"
]