-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (33 loc) · 999 Bytes
/
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
[tool.poetry]
name = "multiphase-galactic-halo-model"
version = "0.1.0"
description = "Extension of Faermann et al 2017, 2018 models of Galactic halo with fluctuations creating co-spatial multiphase gas."
authors = ["dutta-alankar <[email protected]>, mukeshrri <[email protected]>, prats7up <[email protected]>, RitaliG <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "multiphase_galactic_halo_model"}]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.28.2"
numpy = "^1.24.1"
h5py = "^3.7.0"
urllib3 = "^1.26.14"
python-dotenv = "^0.21.0"
scipy = "1.9.3"
tqdm = "^4.65.0"
matplotlib = "^3.7.1"
colorama = "^0.4.6"
mypy = "^1.2.0"
corner = "^2.2.2"
types-requests = "^2.28.11.17"
pandas = "^2.0.1"
joypy = "^0.2.6"
seaborn = "^0.12.2"
emcee = "^3.1.4"
mpi4py = "^3.1.5"
astropy = "^6.0.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"