-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (39 loc) · 924 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "satpy-viirs-l2"
description = "Satpy Plugin for VIIRS_L2 reader colormaps and enhancement."
dynamic = ["version"]
readme = "README.md"
license = {text = "GPL-3.0"}
requires-python = ">=3.8"
dependencies = [
"satpy",
"netCDF4",
]
[tool.hatch.build.targets.sdist]
include = [
"/satpy_viirs_l2",
]
[tool.hatch.version]
path = "satpy_viirs_l2/version.py"
[tool.hathc.env.ci]
dependencies = [
"pip-tools",
]
[tool.hatch.envs.lint]
dependencies = [
"black ~=23.1",
]
[tool.black]
target-version = ["py310"]
line-length = 120
[project.entry-points."satpy.enhancements"]
example_enhancements = "satpy_viirs_l2"
[project.entry-points."satpy.composites"]
example_composites = "satpy_viirs_l2"
[project.entry-points."satpy.readers"]
example_readers = "satpy_viirs_l2"
[tool.hatch.metadata]
allow-direct-references = true