-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (34 loc) · 1.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
[tool.poetry]
name = "janelia-emrp"
version = "0.1.0"
description = "Pipeline scripts and tools for reconstructing Electron Microscopy volumes."
authors = ["Eric Trautman <[email protected]>"]
license = 'BSD-3-Clause'
[tool.poetry.dependencies]
python = "^3.9"
fibsem-tools = "0.3.1"
render-python = {git = "https://github.com/AllenInstitute/render-python.git"}
dask-janelia = "^0.1.4"
bokeh = "^2.3.3"
h5py = "^3.6.0"
pytest = "^7.1.1"
xarray-multiscale = "0.3.1"
pydantic = "^1.9.0"
numpy = "1.21.0"
scikit-image = "0.19.3"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# see https://docs.pytest.org/en/stable/how-to/capture-warnings.html
[tool.pytest.ini_options]
filterwarnings = [
"ignore:::dask_jobqueue[.*]",
"ignore:::distutils[.*]",
"ignore:::fibsem_tools[.*]",
"ignore:::pandas[.*]",
"ignore:::renderapi[.*]",
"ignore:::requests[.*]",
"ignore:::tensorstore", # TODO: why does tensorstore filter not work?
"ignore:DeprecationWarning::" # TODO: remove when tensorstore filter is fixed
]