-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 982 Bytes
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 982 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
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[project]
name = "imap_l3_processing"
dynamic = ["version"]
description = "This is a package for creating IMAP Level 3 data"
requires-python = ">= 3.10"
dependencies = [
"astropy==6.1.7",
"astropy_healpix==1.1.2",
"bitstring==4.3.0",
"imap-data-access>=0.37.0",
"lmfit==1.3.3",
"netCDF4>=1.6",
"numdifftools==0.9.41",
"numpy>=2.0.1,<2.4",
"pandas==2.2.3",
"requests==2.32.3",
"sammi-cdf==1.0.0",
"scikit-learn==1.6.1",
"scipy>=1.13.1",
"spacepy==0.7.0",
"spiceypy==6.0.0",
"uncertainties==3.2.2",
"xarray==2025.3.1",
"imap-processing>=1.0.21",
"hatchling",
"uv-dynamic-versioning"
]
[dependency-groups]
dev = [
"dotenv>=0.9.9",
]
[tool.setuptools]
py-modules = ["imap_l3_processing"]
[tool.uv-dynamic-versioning]
fallback-version = "0.0.0"
[tool.hatch.version]
source = "uv-dynamic-versioning"