-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (88 loc) · 2.64 KB
/
pyproject.toml
File metadata and controls
97 lines (88 loc) · 2.64 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "py3dex"
version = "2.0.0"
description = "Python implementation of 3DEX: Three-dimensional Fourier-Bessel decomposition for cosmological fields"
readme = "README_PYTHON.md"
requires-python = ">=3.8"
license = {text = "CeCILL"}
authors = [
{name = "Boris Leistedt", email = "boris.leistedt@gmail.com"},
{name = "François Lanusse", email = "francois.lanusse@gmail.com"},
]
keywords = ["cosmology", "fourier-bessel", "decomposition", "astrophysics"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy>=1.20.0",
"scipy>=1.7.0",
"healpy>=1.15.0",
"astropy>=5.0",
"numba>=0.55.0",
"tqdm>=4.60.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=3.0",
"black>=22.0",
"flake8>=4.0",
"mypy>=0.950",
]
mpi = [
"mpi4py>=3.1.0",
]
docs = [
"sphinx>=4.5",
"sphinx-rtd-theme>=1.0",
"nbsphinx>=0.8",
"jupyter>=1.0",
]
performance = [
"jax>=0.3.0",
"jaxlib>=0.3.0",
]
[project.scripts]
py3dex-survey2almn = "py3dex.cli.survey2almn:main"
py3dex-survey2almn-lm = "py3dex.cli.survey2almn_lm:main"
py3dex-survey2almn-interactive = "py3dex.cli.survey2almn_interactive:main"
py3dex-almnfile2rmap = "py3dex.cli.almnfile2rmap:main"
py3dex-compute-qln = "py3dex.cli.compute_qln:main"
py3dex-compute-legen-plm = "py3dex.cli.compute_legen_plm:main"
py3dex-compute-qml-pl = "py3dex.cli.compute_qml_pl:main"
py3dex-genmap = "py3dex.cli.genmap:main"
[project.urls]
Homepage = "https://github.com/borisleistedt/3DEX"
Documentation = "https://3dex.readthedocs.io"
Repository = "https://github.com/borisleistedt/3DEX"
"Bug Tracker" = "https://github.com/borisleistedt/3DEX/issues"
Paper = "http://arxiv.org/abs/1111.3591"
[tool.setuptools.packages.find]
where = ["src"]
include = ["py3dex*"]
[tool.pytest.ini_options]
testpaths = ["src/py3dex/tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-v --cov=py3dex --cov-report=html --cov-report=term"
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311']
include = '\.pyi?$'
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false