This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
forked from VitoTAP/stac-catalog-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (58 loc) · 1.63 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
# TODO: consider making the name lower case. Does PyPI make any difference based on casing?
name = "STAC-Catalog-Builder"
version = "0.0.1"
authors = [
{ name="Johan Schreurs", email="johan.schreurs.ext@vito.be" },
{ name="Jeroen Dries", email="jeroen.dries@vito.be" },
]
description = """Tool to build a STAC collection from a directory of GeoTiff files
STAC: SpatioTemporal Asset Catalogs
See https://stacspec.org
"""
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/VitoTAP/stac-catalog-builder"
Documentation = "https://github.com/VitoTAP/stac-catalog-builder#readme"
Issues = "https://github.com/VitoTAP/stac-catalog-builder/issues"
Source = "https://github.com/VitoTAP/stac-catalog-builder"
[tool.hatch.build.targets.wheel]
packages = ["stacbuilder"]
[tool.hatch.build.targets.sdist]
# TODO: switch to only-include and test the build. NOPE does not work
only-include = [
"/stacbuilder",
]
# include = [
# "/stacbuilder",
# ]
# exclude = [
# "/.github",
# "/docs",
# "/tests",
# "/configs-datasets",
# ]
[tool.hatch.version]
path = "stacbuilder/_version.py"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra"
testpaths = [
"tests",
]
[tool.black]
line-length = 120
[tool.isort]
# Run isort in black-compatible mode (https://pycqa.github.io/isort/docs/configuration/black_compatibility.html)
profile = "black"
[tool.ruff]
line-length = 120