forked from ML4GW/amplfi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (64 loc) · 1.43 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
[tool.poetry]
name = "amplfi"
version = "0.3.0"
description = "Accelerated Multi-messenger PE with Likelihood Free Inference"
authors = [
"Ethan Marx",
"Deep Chatterjee"
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
numpy = "<2.0.0"
ml4gw = ">=0.7.1"
lightning = ">=2.5.0"
h5py = "^3.10.0"
ray = {version = "^2.38.0", extras = ["default", "tune"]}
bilby = "^2.2.3"
healpy = "^1.16.6"
pyro-ppl = "^1.9.0"
jsonargparse = {version = "^4.27.1", extras = ["signatures"]}
urllib3 = ">=1.25.4,<1.27"
omegaconf = "^2.3.0"
#lightray = ">=0.2.3"
law = ">=0.1.19"
mldatafind = ">=0.1.3"
luigi = "^3.5.1"
gwpy="3.0.8"
wandb = "^0.18.5"
torch = ">=2.5.0"
s3fs = "^2024.12.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.0"
jupyter = "^1.0.0"
pytest = "^8.0.2"
conda-lock = "^2.5.7"
[tool.poetry.group.docs.dependencies]
Sphinx = ">5.0"
sphinx-rtd-theme = "^2.0.0"
myst-parser = "^2.0.0"
sphinx-autodoc-typehints = "^2.0.0"
linkify-it-py = "^2.0.3"
sphinx-tabs = "^3.4.7"
[tool.poetry.scripts]
amplfi-init = "amplfi.amplfi_init:main"
amplfi-flow-cli = "amplfi.train.cli.flow:main"
amplfi-similarity-cli = "amplfi.train.cli.similarity:main"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| _build
| dist
| docs
)/
'''
[tool.isort]
known_first_party = ["amplfi"]
multi_line_output = 3
include_trailing_comma = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"