-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
65 lines (56 loc) · 1.36 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
[tool.poetry]
name = "aframe"
version = "0.0.1"
description = "End-to-end aframe pipeline components"
authors = [
"Ethan Marx <emarx@mit.edu>",
"William Benoit <benoi090@umn.edu>",
"Alec Gunny <alec.gunny@ligo.org>"
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
luigi = "^3.0"
utils = {path = "./libs/utils", develop = true}
ml4gw-hermes = ">=0.2.0"
law = ">=0.1.19"
kr8s = "^0.10.0"
pykube-ng = {version = "^23.6.0", extras = ["oidc"]}
spython = "^0.2"
boto3 = "^1.34.4"
numpy = "^1.26.4"
cloudpathlib = "^0.18.1"
psutil = "^5.9.8"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
jsonargparse = "^4.27.1"
conda-lock = "^2.5.1"
pre-commit = "^3.7.0"
[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]
build-containers = "scripts.build_containers:main"
aframe-init = "scripts.aframe_init:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| _build
| dist
| docs
)/
'''
[tool.isort]
known_first_party = ["aframe", "train", "utils", "online", "data", "infer", "plots", "export", "ledger", "p_astro", "priors"]
multi_line_output = 3
include_trailing_comma = true