-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 822 Bytes
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
[tool.poetry]
name = "fmflow"
version = "0.5.0"
description = "Data analysis package for FMLO"
authors = ["Akio Taniguchi <taniguchi.akio@gmail.com>"]
keywords = ["astronomy", "radio-astronomy", "data-analysis", "fmlo"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/fmlo-dev/fmflow/"
documentation = "https://fmlo-dev.github.io/fmflow/"
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
astropy = ">=6, <8"
matplotlib = "^3"
netcdf4 = "^1"
numba = "^0.60"
numpy = "^2"
pyyaml = "^6"
scikit-learn = "^1"
scipy = "^1"
tqdm = "^4"
xarray = ">=2024, <2026"
[tool.poetry.group.dev.dependencies]
black = "^25"
ipython = "^8"
myst-parser = "^3"
pydata-sphinx-theme = "^0.15"
pyright = "^1"
pytest = "^8"
sphinx = "^7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"