forked from litebird/litebird_sim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (80 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (80 loc) · 1.83 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
[tool.poetry]
name = "litebird_sim"
version = "0.15.0"
description = "Simulation tools for the LiteBIRD experiment"
authors = [
"Tomasi Maurizio <maurizio.tomasi@unimi.it>",
"Pagano Luca <luca.pagano@unife.it>",
"Anand Avinash",
"Baccigalupi Carlo",
"Banday Anthony",
"Bortolami Marco",
"Galloni Giacomo",
"Galloway Mathew",
"Ghigna Tommaso",
"Giardiello Serena",
"Gomes Miguel",
"Hivon Eric",
"Krachmalnicoff Nicoletta",
"Micheli Silvia",
"Monelli Marta",
"Nagano Yuya",
"Novelli Alessandro",
"Patanchon Guillaume",
"Poletti Davide",
"Puglisi Giuseppe",
"Raffuzzi, Nicolo Elia",
"Reinecke Martin",
"Takase Yusuke",
"Weymann-Despres Gilles",
]
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.10,<3.14"
numba = "^0.61.2"
numpy = "^1.26.4"
astropy = "6.1.7"
tomlkit = "^0.12.1"
sphinx = "^8.1.3"
sphinxcontrib-bibtex = "^2.6.3"
sphinxcontrib-contentui = "^0.2.5"
"sphinxcontrib.asciinema" = "^0.3.7"
pytest = "^8.3.5"
jinja2 = "^3.1"
markdown = "^3.8"
markdown-katex = {version = "^202406.1035"}
matplotlib = "^3.10.3"
healpy = "^1.18.1"
pyyaml = "^6.0"
jplephem = "^2.22"
PyGithub = "^2.6.1"
requests = "^2.32.0"
rich = "^14.0.0"
ducc0 = "^0.38.0"
pysm3 = "^3.4.2"
asciimatics = "^1.15.0"
pyperclip = "^1.9.0"
pre-commit = "^4.2.0"
h5py = "^3.9"
deprecation = "^2.1.0"
scipy = "^1.14.0"
ruff = "^0.11.11"
libinsdb = "^0.8.0"
pydata-sphinx-theme = "^0.16.1"
poetry-plugin-export = "^1.9.0"
[tool.ruff]
lint.extend-select = []
[tool.ruff.lint.per-file-ignores]
"*.ipynb" = ["E402"]
[build-system]
requires = ["poetry_core>=2.1"]
build-backend = "poetry.core.masonry.api"