-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
80 lines (73 loc) · 1.96 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
[tool.poetry]
name = "litebird_sim"
version = "0.13.0"
description = "Simulation tools for the LiteBIRD experiment"
authors = [
"The LiteBIRD Simulation Team",
"Ranajoy Banerji <ranajoy.cosmo@gmail.com>",
"Marco Bortolami <marco.bortolami@unife.it>",
"Mathew Galloway <mathew.galloway@astro.uio.no>",
"Martina Gerbino <gerbinom@fe.infn.it>",
"Serena Giardiello <serena.giardiello@unife.it>",
"Nicoletta Krachmalnicoff <nkrach@sissa.it>",
"Luca Pagano <luca.pagano@unife.it>",
"Davide Poletti <davide.poletti@sissa.it>",
"Giuseppe Puglisi <giuspugl@roma2.infn.it>",
"Nicolò Raffuzzi <rffnll@unife.it>",
"Martin Reinecke <martin@mpa-garching.mpg.de>",
"Maurizio Tomasi <maurizio.tomasi@unimi.it>",
]
readme = "README.md"
license = "GPL3"
include = [
"images/logo.png",
"static/report_template.html",
"static/sakura.css",
"default_imo/schema.json.gz",
"templates/*.md",
"templates/*.txt",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
numba = "^0.57.1"
numpy = "^1.24"
astropy = "5.3.4"
tomlkit = "^0.12.1"
mpi4py = {version = "^3.1", optional = true}
sphinx = "^6.2.1"
sphinx_rtd_theme = "^1.2.2"
sphinxcontrib-bibtex = "^2.5.0"
sphinxcontrib-contentui = "^0.2.5"
"sphinxcontrib.asciinema" = "^0.3.7"
jupyter = {version = "^1.0", optional = true}
jupyterlab = {version = ">=1.2,<4.0", optional = true}
pytest = "^7.4"
jinja2 = "^3.1"
markdown = "^3.4"
markdown-katex = {version = "^202406.1035"}
matplotlib = "^3.8"
healpy = "^1.16.2"
pyyaml = "^6.0"
pybind11 = "~2.6.0"
jplephem = "^2.18"
PyGithub = "^2.1"
requests = "^2.31.0"
rich = "^13.4.2"
ducc0 = "^0.31.0"
pysm3 = "~3.3.2"
asciimatics = "^1.14.0"
pyperclip = "^1.8.2"
pre-commit = "^2.15.0"
h5py = "^3.9"
deprecation = "^2.1.0"
scipy = "^1.11.3"
ruff = "^0.1.7"
libinsdb = "^0.7.4"
[tool.poetry.extras]
mpi = ["mpi4py"]
jupyter = ["jupyter"]
[tool.ruff]
extend-select = []
[build-system]
requires = ["poetry_core>=1.0"]
build-backend = "poetry.core.masonry.api"