-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (73 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
84 lines (73 loc) · 1.63 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
[project]
name = "jimgw"
version = "0.3.0"
description = "Gravitatioanl wave data analysis tool in Jax"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Kaze W. K. Wong", email = "kazewong.physics@gmail.com"},
]
license = {file = "LICENSE"}
dependencies = [
"astropy>=6.1.4",
"beartype>=0.19.0",
"flowmc>=0.4.4",
"gwpy>=3.0.10",
"jaxtyping>=0.2.34",
"ripplegw>=0.0.9",
"corner>=2.2.2",
"matplotlib>=3.10.1",
]
[project.optional-dependencies]
docs = [
"mkdocs-gen-files==0.5.0",
"mkdocs-jupyter==0.25.1",
"mkdocs-literate-nav==0.6.1",
"mkdocs-material==9.5.47",
"mkdocs==1.6.1",
"mkdocstrings[python]==0.27.0",
"pymdown-extensions==10.12",
]
cuda = [
"jax[cuda]>=0.5.0",
]
dagster = [
"dagster>=1.11.1",
"dagster-dg-cli>=1.11.1",
"dagster-pipes>=1.11.1",
"dagster-webserver>=1.11.1",
]
[tool.uv]
dev-dependencies = [
"jimgw",
"pre-commit>=4.2.0",
"coverage>=7.7.0",
"coveralls>=4.0.1",
"pytest>=8.3.3",
"ruff>=0.11.12",
]
[tool.uv.sources]
jimgw = { workspace = true }
[tool.dagster]
modules = [
{ type="module", name="jim_dagster.InjectionRecovery.definitions" },
{ type="module", name="jim_dagster.RealDataCatalog.definitions" },
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
include = ["src"]
exclude = ["docs","tests"]
[tool.ruff]
include = ["src"]
exclude = ["test", "docs"]
[tool.coverage.report]
exclude_also = [
'def __repr__',
"raise AssertionError",
"raise NotImplementedError",
"@(abc\\. )?abstractmethod",
"def tree_flatten",
"def tree_unflatten",
]