-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpyproject.toml
84 lines (77 loc) · 1.84 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
81
82
83
84
[build-system]
build-backend = 'mesonpy'
requires = ['meson-python', 'numpy', 'cython', 'versioneer[toml]', 'build']
[project]
name = 'pixell'
version = "0.28.0"
description = "A rectangular pixel map manipulation and harmonic analysis library derived from Sigurd Naess' enlib."
readme = 'README.rst'
requires-python = '>=3.9'
license = {file = 'LICENSE'}
authors = [
{name = "Simons Observatory Collaboration Analysis Library Task Force"},
]
maintainers = [
{name = "Mathew Madhavacheril", email = "[email protected]"}
]
dependencies = [
'numpy>=1.20.0',
'astropy>=2.0',
'setuptools>=39',
'h5py>=2.7',
'scipy>=1.0',
'python_dateutil>=2.7',
'cython',
'healpy>=1.13',
'matplotlib>=2.0',
'pyyaml>=5.0',
'Pillow>=5.3.0, != 10.4.0',
'pytest-cov>=2.6',
'coveralls>=1.5',
'pytest>=4.6',
'ducc0>=0.36.0',
'numba>=0.54.0'
]
[project.scripts]
# See scripts/meson.build for installation
benchmark-pixell-runner = "pixell.scripts.benchmark_pixell_runner:main"
benchmark-pixell = "pixell.scripts.benchmark_pixell:main"
[project.optional-dependencies]
test = [
'pip>=9.0',
'bumpversion>=0.5',
'wheel>=0.30',
'watchdog>=0.8',
'flake8>=3.5',
'coverage>=4.5',
'Sphinx>=1.7',
'twine>=1.10',
'numpy>=1.20',
'astropy>=2.0',
'setuptools>=39.2',
'h5py>=2.7',
'scipy>=1.0',
'python_dateutil>=2.7',
'cython',
'matplotlib>=2.0',
'pyyaml>=5.0',
'pytest-cov>=2.6',
'coveralls>=1.5',
'pytest>=4.6'
]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.cibuildwheel]
test-requires = "pytest"
test-command = "pytest {project}/tests"
build = "cp39-* cp310-* cp311-* cp312-*"
skip = "*i686* *musllinux*"
[tool.coverage.run]
source = [
"pixell"
]
[tool.coverage.report]
exclude_lines = ["pragma: no cover"]
exclude_also = ["if TYPE_CHECKING:"]