-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
80 lines (69 loc) · 1.8 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[tool.poetry]
name = "dask-ms"
version = "0.2.23"
description = "xarray Dataset from CASA Tables"
authors = ["Simon Perkins <simon.perkins@gmail.com>"]
license = "BSD3"
readme = "README.rst"
packages = [{include = "daskms"}]
[tool.poetry.dependencies]
python = "^3.10, < 3.13"
appdirs = "^1.4.4"
dask = {extras = ["array"], version = ">= 2023.1.1, < 2024.11.0"}
donfig = ">= 0.8.0"
python-casacore = "^3.6.1"
numpy = ">= 2.0.0"
pyarrow = {version = ">= 14.0.1", optional = true}
zarr = {version = "^2.12.0", optional=true}
xarray = {version = ">= 2023.01.0", optional=true}
s3fs = {version = ">= 2023.1.0", optional=true}
minio = {version = "^7.2.0", optional = true}
pytest = {version = "^7.1.3", optional=true}
pandas = {version = "^2.1.2", optional = true}
katdal = {version = "^0.23", optional = true}
fsspec = ">=2022.7.0"
[tool.poetry.scripts]
dask-ms = "daskms.apps.entrypoint:main"
fragments = "daskms.apps.fragments:main"
[tool.poetry.extras]
arrow = ["pandas", "pyarrow"]
katdal = ["katdal", "xarray", "zarr"]
xarray = ["xarray"]
zarr = ["zarr"]
s3 = ["s3fs"]
complete = ["s3fs", "pandas", "pyarrow", "xarray", "zarr", "katdal"]
testing = ["minio", "pytest"]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
tbump = "^6.9.0"
pre-commit = "^2.20.0"
black = "^22.8.0"
ipython = "^8.16.1"
ipdb = "^0.13.13"
ruff = "^0.1.3"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
furo = "^2022.9.15"
Sphinx = "^5.1.1"
numpydoc = "^1.4.0"
Pygments = "^2.13.0"
sphinx-copybutton = "^0.5.0"
[tool.ruff]
line-length = 88
target-version = "py310"
select = [
# flake8-builtins
"A",
# flake8-bugbear
"B",
# isort
"I001",
"I002",
# tidy imports
"TID"
]
[build-system]
requires = ["setuptools", "poetry-core"]
build-backend = "poetry.core.masonry.api"