-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (69 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
78 lines (69 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
[project]
name = "decode"
version = "2025.10.0"
description = "DESHIMA code for data analysis"
readme = "README.md"
keywords = [
"astronomy",
"data-analysis",
"deshima",
"spectroscopy",
"submillimeter",
]
requires-python = ">=3.9,<3.13"
dependencies = [
"astropy>=6,<8",
"dask>=2024,<2026",
"dems>=2025.6,<2026.0",
"fire>=0.5,<1.0",
"iminuit>=2,<3",
"matplotlib>=3,<4",
"ndtools>=1,<2",
"numpy>=1.23,<3.0",
"pandas>=2,<3",
"pandas-stubs>=2,<3",
"scikit-learn>=1,<2",
"scipy>=1,<2",
"tomli_w>=1,<2",
"xarray>=2024,<2026",
"zarr>=2,<3",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[[project.authors]]
name = "Akio Taniguchi"
email = "taniguchi.akio@gmail.com"
[[project.authors]]
name = "Juri Yamanaka"
email = "j.yamanaka@a.phys.nagoya-u.ac.jp"
[[project.authors]]
name = "Shinji Fujita"
email = "s-fujita@ism.ac.jp"
[project.license]
file = "LICENSE"
[project.scripts]
decode-qlook = "decode.qlook:main"
[project.urls]
homepage = "https://deshima-dev.github.io/decode"
repository = "https://github.com/deshima-dev/decode"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"black>=25,<26",
"ipython>=8,<10",
"myst-parser>=3,<5",
"pydata-sphinx-theme>=0.15,<1.0",
"pyright>=1,<2",
"pytest>=8,<9",
"sphinx>=7,<9",
]
[tool.pyright]
typeCheckingMode = "basic"