-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
43 lines (37 loc) · 1.61 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
# Note that we do not explicitly list the requirements. This is because the
# main one is GDAL (via rios), which is not managed on PyPI (for good reasons), and
# therefore cannot be satisfactorily managed with pip. If we list it as a
# requirement, this mainly just creates confusion. GDAL must be installed
# by other means. For the same reason, this package is itself not available
# from PyPI.
# The actual requirements are rios (which requires GDAL) and scipy.
#
# Installation requires pip>=23.0.
#
[build-system]
requires = ["setuptools>=61.0", "wheel", "numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "python-fmask"
dynamic = ["version"]
authors = [
{name = "Sam Gillingham"},
{name = "Neil Flood"}
]
description = "Implement the Fmask cloud masking algorithm (Zhu, Wang & Woodcock 2015)"
readme = "README.md"
license = {file = "LICENSE.txt"}
[project.scripts]
fmask_sentinel2makeAnglesImage = "fmask.cmdline.sentinel2makeAnglesImage:mainRoutine"
fmask_sentinel2Stacked = "fmask.cmdline.sentinel2Stacked:mainRoutine"
fmask_usgsLandsatMakeAnglesImage = "fmask.cmdline.usgsLandsatMakeAnglesImage:mainRoutine"
fmask_usgsLandsatSaturationMask = "fmask.cmdline.usgsLandsatSaturationMask:mainRoutine"
fmask_usgsLandsatStacked = "fmask.cmdline.usgsLandsatStacked:mainRoutine"
fmask_usgsLandsatTOA = "fmask.cmdline.usgsLandsatTOA:mainRoutine"
[project.urls]
Repository = "https://github.com/ubarsc/python-fmask.git"
Homepage = "https://www.pythonfmask.org"
[tool.setuptools.dynamic]
version = {attr = "fmask.__version__"}
[tool.setuptools.packages.find]
namespaces = false # Excludes subdirectories with no __init__.py