-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
42 lines (34 loc) · 1.29 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
# Notes
# Currently we allow setuptools to "discover" the package directories,
# but we could specify them if required, with [tool.setuptools]/packages=
# The installation requires pip>=23.0. If not, it will fail in rather
# cryptic ways (depending exactly what options are used).
# We have chosen not to explicitly list the dependency on GDAL. This is
# because GDAL itself cannot be installed with pip, and so must already be
# installed on the system by some other means.
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rios"
dynamic = ["version"]
authors = [
{name = "Sam Gillingham"},
{name = "Neil Flood"}
]
description = "Raster Input/Output Simplification"
readme = "README.md"
license = {file = "LICENSE.txt"}
[project.optional-dependencies]
# For those computeWorkerKinds which run across multiple machines
multimachine = ["cloudpickle"]
[project.scripts]
testrios = "rios.riostests.riostestutils:testAll"
rioscalcstats = "rios.cmdline.rioscalcstats:main"
riosprintstats = "rios.cmdline.riosprintstats:main"
rios_computeworker = "rios.cmdline.rios_computeworker:mainCmd"
[project.urls]
Repository = "https://github.com/ubarsc/rios.git"
Homepage = "https://www.rioshome.org"
[tool.setuptools.dynamic]
version = {attr = "rios.__version__"}