-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
38 lines (32 loc) · 1.18 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
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "planck_2020_hillipop"
dynamic = ["version"]
authors = [{ name = "Matthieu Tristram" }]
description = "A cobaya high-ell likelihood polarized for planck"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
requires-python = ">=3.8.0"
dependencies = ["astropy", "cobaya>=3.2.2"]
[tool.setuptools_scm]
version_file = "planck_2020_hillipop/_version.py"
[tool.setuptools.package-data]
"*" = ["*.yaml", "*.bibtex"]
[tool.setuptools.packages.find]
exclude = ["docs", "tests"]
[project.urls]
Homepage = "https://github.com/planck-npipe/hillipop"
Documentation = "https://github.com/planck-npipe/hillipop"
Source = "https://github.com/planck-npipe/hillipop"
Tracker = "https://github.com/planck-npipe/hillipop/issues"
Licensing = "https://github.com/planck-npipe/hillipop/blob/master/LICENCE"