-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (39 loc) · 1003 Bytes
/
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
[tool.poetry]
name = "xarray-fits"
version = "0.2.4"
description = "xarray Datasets for FITS-like data"
authors = ["Simon Perkins <[email protected]>"]
packages = [{include = "xarrayfits"}]
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.9"
astropy = "^6.0.0"
dask = {extras = ["array"], version = ">= 2024.1.0, < 2024.2.0"}
xarray = "^2024.2.0"
pytest = {version = "^8.1.1", optional = true, extras = ["testing"]}
distributed = {version = ">= 2024.1.0, < 2024.2.0", optional = true, extras = ["testing"]}
fsspec = "^2024.3.0"
[tool.poetry.extras]
testing = ["distributed", "pytest"]
[tool.poetry.group.dev.dependencies]
tbump = "^6.9.0"
pre-commit = "^2.20.0"
ruff = "^0.1.3"
[tool.ruff]
line-length = 88
target-version = "py310"
select = [
# flake8-builtins
"A",
# flake8-bugbear
"B",
# isort
"I001",
"I002",
# tidy imports
"TID"
]
extend-select = ["I"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"