-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (33 loc) · 858 Bytes
/
pyproject.toml
File metadata and controls
42 lines (33 loc) · 858 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
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[project]
name = "mapping-tool"
dynamic = ["version"]
description = "Command line tool for generating skymaps for IMAP"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"argparse>=1.4.0",
"imap-l3-processing>=1.0.8",
"imap-processing>=1.0.29",
"jsonschema>=4.25.0",
"pyyaml>=6.0.2",
"hatchling",
"uv-dynamic-versioning",
]
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.uv-dynamic-versioning]
fallback-version = "0.0.0"
[tool.uv.sources]
imap-l3-processing = { git = "https://github.com/IMAP-Science-Operations-Center/imap_L3_processing" }
[tool.setuptools]
py-modules = ["mapping_tool"]
[tool.ruff]
line-length = 120
target-version = "py313"
[dependency-groups]
dev = [
"ruff>=0.15.8",
]