-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
57 lines (51 loc) · 1.08 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
[tool.poetry]
name = "prose"
version = "3.3.4"
description = "Modular image processing pipelines for Astronomy"
authors = ["Lionel Garcia"]
license = "MIT"
readme = "README.md"
include = ["prose/io/*.sql"]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
numpy = "^1.23.5"
astropy = "^5.1.1"
astroquery = "^0.4.6"
requests = "^2.31.0"
ipython = "*"
scipy = "*"
matplotlib = "*"
scikit-image = "^0.21.0"
pandas = ">1.1"
tqdm = "*"
photutils = "^1.6.0"
pyyaml = "*"
tabulate = "*"
sep = "*"
celerite2 = "*"
twirl = "0.4.0"
multiprocess = "*"
pytest = "*"
imageio = { version = "*", extras = ["ffmpeg"] }
[tool.poetry.group.dev.dependencies]
pytest = "*"
black = "*"
[tool.poetry.group.jax.dependencies]
jax = "^0.4.26"
jaxopt = "*"
[tool.poetry.group.docs.dependencies]
sphinx = "*"
docutils = "*"
jupyterlab = "*"
myst-parser = "*"
sphinx-book-theme = "^1.0.0"
myst-nb = "*"
sphinx-copybutton = "*"
sphinx-design = "*"
toml = "*"
ipywidgets = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
fitsmanager = 'prose.scripts.fitsmanager:main'