-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
67 lines (62 loc) · 1.45 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
[tool.black]
line-length = 79
include = './*\.pyi?$|tests\/.*\.pyi?$|tjpcov\/.*\.pyi?$'
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "tjpcov"
authors = [
{name="LSST DESC"}
]
description = "Covariances for LSST DESC"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = [
"scipy<1.12", # <1.12 to avoid bug in CCL<3.1 (not in pypy) with simpson integration
"numpy",
"Jinja2",
"pyyaml",
"pyccl>=3.0.0",
"sacc>=0.12",
"camb",
"healpy",
"h5py"
]
dynamic = ["version"]
# From https://github.com/pypa/setuptools_scm
# Equivalent to use_scm_version = True in setup.py
[tool.setuptools_scm]
[project.optional-dependencies]
doc = [
"sphinx",
"sphinx-autoapi",
"sphinx_rtd_theme",
"sphinx-book-theme",
]
nmt = [
"pymaster>=2"
]
mpi = [
"mpi4py"
]
full = [
"pymaster>=2",
"mpi4py",
"sphinx",
"sphinx-autoapi",
"sphinx_rtd_theme",
"sphinx-book-theme",
]
[project.urls]
"Homepage" = "https://github.com/LSSTDESC/TJPCov"
"Bug Tracker" = "https://github.com/LSSTDESC/TJPCov/issues"
"Documentation" = "https://tjpcov.readthedocs.io"