-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
46 lines (41 loc) · 903 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
37
38
39
40
41
42
43
44
45
46
[project]
name = "jimgw"
version = "0.2.0"
description = "Gravitatioanl wave data analysis tool in Jax"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "Kaze W. K. Wong", email = "kazewong.physics@gmail.com"},
]
license = {file = "LICENSE"}
dependencies = [
"astropy>=6.1.4",
"beartype>=0.19.0",
"corner>=2.2.2",
"flowmc>=0.3.4",
"gwpy>=3.0.10",
"jax>=0.4.24, <=0.4.31",
"jaxtyping>=0.2.34",
"pytest>=8.3.3",
"ripplegw>=0.0.9",
"typed-argument-parser>=1.10.1",
]
[project.optional-dependencies]
docs = [
"mkdocs-gen-files",
"mkdocs-jupyter",
"mkdocs-literate-nav",
"mkdocs-material",
"mkdocs",
"mkdocstrings[python]",
"pymdown-extensions",
]
[tool.uv]
dev-dependencies = [
"jimgw",
]
[tool.uv.sources]
jimgw = { workspace = true }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"