-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
38 lines (32 loc) · 1.09 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
[build-system]
requires = ["flit_core >=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "xarray-behave"
authors = [
{name = "Jan Clemens", email = "[email protected]"},
]
classifiers = ["License :: OSI Approved :: Apache Software License"]
dynamic = ["version", "description"]
requires-python = ">3.9"
dependencies = ['defopt==6.3', 'rich',
'flammkuchen', 'h5py', 'pyyaml', 'zarr', 'dask', 'pandas', 'xarray',
'scikit-image', 'peakutils', 'numba', 'numpy', 'scipy>1.9',
'sounddevice', 'soundfile', 'librosa>0.8',
'opencv-python-headless', 'pyvideoreader',
'PySide6-Essentials', 'pyqtgraph>0.12.2', 'qtpy', 'superqt', 'colorcet'
]
readme = "README.md"
[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