forked from casangi/xradio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (64 loc) · 1.15 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
[project]
name = "xradio"
version = "0.0.43"
description = " Xarray Radio Astronomy Data IO"
authors = [
{name = "Jan-Willem Steeb", email="[email protected]"},
]
license = {file = "LICENSE.txt"}
readme = "README.md"
requires-python = ">= 3.9, < 3.13"
dependencies = [
'astropy',
'dask',
'distributed',
'toolviper',
'numba>=0.57.0',
'numpy',
'pytest',
'pytest-cov',
'pytest-html',
's3fs',
'scipy',
'xarray',
'zarr',
'pyarrow',
'python_casacore>=3.6.1; sys_platform != "darwin" ',
'typing_extensions; python_version < "3.10"',
'typeguard'
]
[project.optional-dependencies]
interactive = [
'matplotlib',
'prettytable',
'jupyterlab',
'ipykernel',
'ipympl',
'ipython',
'jupyter-client',
]
docs = [
'nbsphinx',
'recommonmark',
'scanpydoc',
'sphinx-autoapi',
'sphinx-autosummary-accessors',
'sphinx_rtd_theme',
'twine',
'pandoc'
]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"--strict-markers"
]
testpaths = [
"tests"
]
pythonpath = [
"."
]
[tool.black]
line-length = 88
target-version = ['py39']
include = '\.py$'