-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
64 lines (53 loc) · 1.33 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
63
64
[project]
name = "wavpack-numcodecs"
version = "0.2.2"
description = "Numcodecs implementation of WavPack audio codec."
authors = [
{name = "Alessio Buccino", email = "[email protected]"},
{name = "David Bryant", email = "[email protected]"},
]
readme = "README.md"
license = {text = "MIT"}
keywords = ["example", "project"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"numcodecs",
"packaging"
]
[project.optional-dependencies]
test = [
"pytest",
"zarr",
"Cython"
]
test_no_cython = [
"pytest",
"zarr"
]
[project.urls]
"Homepage" = "https://github.com/AllenNeuralDynamics/wavpack-numcodecs"
[build-system]
requires = ["setuptools>=62.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
package-data = {"wavpack_numcodecs" = ["**/*.pyx", "**/*.pxd", "**/*.c", "**/*.h", "**/*.so", "**/*.so.*", "**/*.dll", "**/*.lib"]}
[tool.setuptools.exclude-package-data]
wavpack_numcodecs = ["**/tests/test_*"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["wavpack_numcodecs*"]
namespaces = false
exclude = ["wavpack_numcodecs.*.tests"]
[tool.black]
line-length = 120
[tool.pytest.ini_options]
markers = [
"numcodecs",
"zarr"
]