-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
63 lines (53 loc) · 1.69 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
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "mflike"
dynamic = ["version"]
authors = [
{ name = "Simons Observatory Collaboration Power Spectrum Group aka so_ps 1 & 2" },
]
description = "SO LAT multi-frequency likelihood for cobaya"
readme = "README.rst"
license = { file = "LICENSE" }
keywords = ["likelihood", "SO LAT", "cosmology"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
requires-python = ">=3.9.0"
dependencies = [
"fgspectra>=1.3.0",
"syslibrary>=0.2.0",
"cobaya>=3.5.4",
"sacc>=0.9.0",
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "camb", "healpy"]
notebook = ["jupyter", "camb", "seaborn", "latex2mathml"]
[project.urls]
Homepage = "https://github.com/simonsobs/LAT_MFLike"
Documentation = "https://lat-mflike.readthedocs.io"
Source = "https://github.com/simonsobs/LAT_MFLike"
Tracker = "https://github.com/simonsobs/LAT_MFLike/issues"
Licensing = "https://github.com/simonsobs/LAT_MFLike/blob/master/LICENCE"
[tool.setuptools_scm]
version_file = "mflike/_version.py"
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[tool.setuptools.packages.find]
exclude = ["binder", "docs", "tests"]
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
[tool.coverage.run]
omit = ["mflike/tests/*", "mflike/_version.py"]
[tool.coverage.report]
exclude_lines = ["raise LoggedError", "except AttributeError"]