-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.22 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
[build-system]
requires = ["flit_core >=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "xarray-behave"
authors = [{ name = "Jan Clemens", email = "clemensjan@googlemail.com" }]
classifiers = ["License :: OSI Approved :: Apache Software License"]
dynamic = ["version", "description"]
requires-python = ">=3.10"
dependencies = [
'defopt==6.3',
'rich',
'flammkuchen',
'h5py',
'pyyaml',
'zarr<3',
'dask',
'pandas',
'xarray',
'scikit-image',
'peakutils',
'numba',
'numpy',
'scipy>1.9',
'sounddevice',
'soundfile',
'librosa>0.8',
'opencv-python-headless',
'pyvideoreader',
'PySide6-Essentials==6.8.*',
'pyqtgraph>0.12.2',
'qtpy',
'superqt',
'colorcet',
]
readme = "README.md"
[project.optional-dependencies]
dev = ["pytest", "flit"]
[project.urls]
source = "https://github.com/janclemenslab/xarray-behave"
documentation = "https://janclemenslab.org/das/"
[tool.flit.module]
name = "xarray_behave"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
[tool.ruff]
extend-select = ["C4", "NPY", "PD", "TCH"]
ignore = ["E501"]
show-fixes = true
line-length = 196