-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
37 lines (31 loc) · 1.01 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
[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 :: MIT License"]
dynamic = ["version", "description"]
requires-python = ">3.6"
dependencies = ['numpy', 'scipy', 'xarray', 'h5py', 'zarr', 'flammkuchen', 'rich',
'dask', 'toolz', 'pysoundfile', 'opencv-python-headless']
readme = "README.md"
[project.optional-dependencies]
gui = ['pyside6', 'pyqtgraph>0.12.2', 'pyvideoreader', 'qtpy', 'superqt',
'sounddevice', 'scikit-image', 'pyyaml', 'defopt', 'colorcet',
'peakutils']
[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