-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
139 lines (135 loc) · 4.92 KB
/
pyproject.toml
File metadata and controls
139 lines (135 loc) · 4.92 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
[project]
name = "ducc0"
description = "Distinctly useful code collection: contains efficient algorithms for Fast Fourier (and related) transforms, spherical harmonic transforms involving very general spherical grids, gridding/degridding tools for radio interferometry, 4pi spherical convolution operators and much more."
authors = [
{name = "Martin Reinecke", email = "martin@mpa-garching.mpg.de"},
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: C++",
"Programming Language :: Python",
]
requires-python = ">=3.8"
dependencies = ["numpy>=1.17.0"]
version = "0.40.0"
[project_urls]
"Bug Tracker" = "https://gitlab.mpcdf.mpg.de/mtr/ducc/issues"
"Bug Tracker (Github)" = "https://github.com/mreineck/ducc/issues"
"Documentation" = "https://mtr.pages.mpcdf.de/ducc"
"Source Code" = "https://gitlab.mpcdf.mpg.de/mtr/ducc"
"Source Code (Github)" = "https://github.com/mreineck/ducc"
"README" = "https://gitlab.mpcdf.mpg.de/mtr/ducc/-/blob/ducc0/README.md"
"Changelog" = "https://gitlab.mpcdf.mpg.de/mtr/ducc/-/blob/ducc0/ChangeLog"
[build-system]
requires = ["scikit-build-core>0.5", "nanobind>=2.5.0", "pybind11>=2.13.6", "numpy>=1.17.0"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
minimum-version = "build-system.requires"
build-dir = "build/{wheel_tag}"
install.strip = false
sdist.exclude = ["*"]
sdist.include = [
"LICENSE",
"ChangeLog",
"README.md",
"pyproject.toml",
"CMakeLists.txt",
"cmake/CheckAVX.cpp",
"src/ducc0/infra/aligned_array.h",
"src/ducc0/infra/bucket_sort.h",
"src/ducc0/infra/error_handling.h",
"src/ducc0/infra/mav.h",
"src/ducc0/infra/mav.cc",
"src/ducc0/infra/misc_utils.h",
"src/ducc0/infra/simd.h",
"src/ducc0/infra/string_utils.cc",
"src/ducc0/infra/string_utils.h",
"src/ducc0/infra/threading.cc",
"src/ducc0/infra/threading.h",
"src/ducc0/infra/timers.h",
"src/ducc0/infra/useful_macros.h",
"src/ducc0/bindings/pybind_utils.h",
"src/ducc0/math/cmplx.h",
"src/ducc0/math/constants.h",
"src/ducc0/math/geom_utils.cc",
"src/ducc0/math/geom_utils.h",
"src/ducc0/math/gl_integrator.h",
"src/ducc0/math/gl_integrator.cc",
"src/ducc0/math/gridding_kernel.h",
"src/ducc0/math/gridding_kernel.cc",
"src/ducc0/math/math_utils.h",
"src/ducc0/math/mcm.h",
"src/ducc0/math/pointing.cc",
"src/ducc0/math/pointing.h",
"src/ducc0/math/quaternion.h",
"src/ducc0/math/rangeset.h",
"src/ducc0/math/solvers.h",
"src/ducc0/math/space_filling.cc",
"src/ducc0/math/space_filling.h",
"src/ducc0/math/unity_roots.h",
"src/ducc0/math/vec3.h",
"src/ducc0/math/wigner3j.h",
"src/ducc0/math/wigner3j.cc",
"src/ducc0/fft/fft1d_impl.h",
"src/ducc0/fft/fftnd_impl.h",
"src/ducc0/fft/fft.h",
"src/ducc0/fft/fft_inst_inc.h",
"src/ducc0/fft/fft_inst1.cc",
"src/ducc0/fft/fft_inst2.cc",
"src/ducc0/nufft/nufft_common.h",
"src/ducc0/nufft/nufft.h",
"src/ducc0/nufft/spreadinterp.h",
"src/ducc0/nufft/spreadinterp_impl.h",
"src/ducc0/nufft/spreadinterp_inst1.cc",
"src/ducc0/nufft/spreadinterp_inst2.cc",
"src/ducc0/sht/alm.h",
"src/ducc0/sht/sht.h",
"src/ducc0/sht/sht_inner_loop.h",
"src/ducc0/sht/sht.cc",
"src/ducc0/sht/sphere_interpol.h",
"src/ducc0/sht/sht_utils.h",
"src/ducc0/sht/totalconvolve.h",
"src/ducc0/healpix/healpix_base.cc",
"src/ducc0/healpix/healpix_base.h",
"src/ducc0/healpix/healpix_tables.cc",
"src/ducc0/healpix/healpix_tables.h",
"src/ducc0/wgridder/wgridder.h",
"src/ducc0/wgridder/wgridder_impl.h",
"src/ducc0/wgridder/wgridder_inst_inc.h",
"src/ducc0/wgridder/wgridder_inst1.cc",
"src/ducc0/wgridder/wgridder_inst2.cc",
"src/ducc0/wgridder/wgridder_inst3.cc",
"src/ducc0/wgridder/wgridder.cc",
"python/module_adders.h",
"python/ducc.cc",
"python/fft_pymod.cc",
"python/nufft_pymod.cc",
"python/sht_pymod.cc",
"python/healpix_pymod.cc",
"python/wgridder_pymod.cc",
"python/totalconvolve_pymod.cc",
"python/misc_pymod.cc",
"python/pointingprovider_pymod.cc",
"python/test/test_fft.py",
"python/test/test_healpix.py",
"python/test/test_misc.py",
"python/test/test_pointing.py",
"python/test/test_sht.py",
"python/test/test_totalconvolve.py",
"python/test/test_wgridder.py",
"python/test/test_nufft.py",
"python/demos/fft_bench.py",
"python/demos/fft_stress.py",
"python/demos/healpix_perftest.py",
"python/demos/totalconvolve_demo.py",
"python/demos/totalconvolve_usage.py",
"python/demos/sht_analysis_demo.py",
"python/demos/nufft_benchmark.py"
]