-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (44 loc) · 1.24 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
[tool.poetry]
name = "sbm"
version = "0.4.1"
license = "GPL3"
description = "Spin-based map-making (SBM) for CMB experiments"
authors = ["yusuke-takase <[email protected]>"]
readme = "README.md"
repository = "https://github.com/yusuke-takase/SBM"
keywords = [
"CMB",
"Map-making",
"Cross-linking"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Astronomy",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
numpy = "^1.23"
healpy = "^1.15.0"
matplotlib = "^3.1"
h5py = "^3.11.0"
pytest = "<8.0"
litebird_sim = { git = "https://github.com/litebird/litebird_sim.git", branch = "master" }
pandas = "<=2.2.2"
tqdm = "^4.66.5"
iminuit = "^2.30.1"
toml = "^0.10.2"
pydata-sphinx-theme = "^0.16.0"
sympy = "^1.13.3"
ipython = "^8.30.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
extend-select = []