-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
70 lines (59 loc) · 1.82 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "pygac"
dynamic = ["version"]
description = "NOAA AVHRR GAC/LAC/FRAC reader and calibration"
authors = [
{ name = "The Pytroll Team", email = "[email protected]" }
]
dependencies = [
"bottleneck>=1.0.0",
"docutils>=0.3",
"h5py>=2.0.1",
"numpy>=1.8.0",
"pyorbital>=0.3.2",
"python-geotiepoints>=1.1.8",
"scipy>=0.8.0",
"packaging",
"xarray>=2024.1.0"
]
readme = "README.md"
requires-python = ">=3.8"
license = { text = "GPLv3" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering"
]
[project.urls]
Homepage = "https://github.com/pytroll/pygac"
"Bug Tracker" = "https://github.com/pytroll/pygac/issues"
Documentation = "https://pygac.readthedocs.io/en/stable/"
"Source Code" = "https://github.com/pytroll/pygac"
Organization = "https://pytroll.github.io/"
Slack = "https://pytroll.slack.com/"
"Release Notes" = "https://github.com/pytroll/pygac/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = ['pytest', 'pre-commit', 'ruff']
[project.scripts]
pygac-convert-patmosx-coefficients = "pygac.patmosx_coeff_reader:main"
[project.entry-points."pygac.calibration"]
noaa = "pygac.calibration.noaa:calibrate"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["pygac"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "pygac/version.py"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "W", "F", "I", "Q", "NPY"]