-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (91 loc) · 2.07 KB
/
pyproject.toml
File metadata and controls
102 lines (91 loc) · 2.07 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[project]
name = "astroviper"
version = "0.0.34"
description = "Astro Visibility and Image Parallel Execution Reduction"
authors = [{ name = "Jan-Willem Steeb", email = "jsteeb@nrao.edu"},
{name = "Dave Mehringer", email="dmehring@nrao.edu"},
{name = "Kumar Golap", email="kgolap@nrao.edu"},
{name = "Takahiro Tsutsumi", email="ttsutsum@nrao.edu"},
{name = "Srikrishna Sekhar", email="ssekhar@nrao.edu"},
]
license = { file = "LICENSE.txt" }
readme = "README.md"
requires-python = ">=3.11,<3.14"
# ✅ Core runtime dependencies must live here
dependencies = [
"graphviper>=0.0.36",
"numpy>=1.20.0",
"xradio[zarr]>=1.1.0",
"numba",
]
[project.optional-dependencies]
python_casacore = [
"python_casacore>=3.6.1; sys_platform != 'darwin'"
]
interactive = [
"matplotlib",
"prettytable",
"jupyterlab",
"ipykernel",
"ipympl",
"ipython",
"jupyter-client",
"bokeh",
"holoviews"
]
docs = [
"nbsphinx",
"recommonmark",
"scanpydoc",
"sphinx-autoapi",
"sphinx-autosummary-accessors",
"sphinx_rtd_theme",
"twine",
"pandoc",
]
all = [
"python_casacore>=3.6.1; sys_platform != 'darwin'",
"pytest",
"pytest-cov",
"pytest-html",
"matplotlib",
"prettytable",
"jupyterlab",
"ipykernel",
"ipympl",
"ipython",
"jupyter-client",
"nbsphinx",
"recommonmark",
"scanpydoc",
"sphinx-autoapi",
"sphinx-autosummary-accessors",
"sphinx_rtd_theme",
"twine",
"pandoc",
"pre-commit",
"nbstripout",
]
[build-system]
# Include numpy so headers are present at build time
requires = [
"scikit-build-core>=0.5.0",
"pybind11>=2.10.0",
"setuptools",
"wheel",
"numpy>=1.20.0"
]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
build-dir = "build/{wheel_tag}"
# With a src/ layout, list the import package name(s)
wheel.packages = ["src/astroviper"]
[tool.scikit-build.cmake]
build-type = "Release"
[tool.scikit-build.build]
verbose = false
[tool.scikit-build.cmake.define]
PYBIND11_FINDPYTHON = "ON"
# (Optional) This block is ignored by scikit-build-core; safe to delete.
[tool.setuptools.packages.find]
where = ["src"]