-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
85 lines (75 loc) · 2.03 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[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"
authors = [
{ name="Johan Schreurs", email="johan.schreurs.ext@vito.be" },
{ name="Jeroen Dries", email="jeroen.dries@vito.be" },
{ name="Victor Verhaert", email="victor.verhaert@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",
]
dependencies = [
"click==8.1.*",
"dynaconf==3.2.*",
"geopandas==0.14.*",
"openeo==0.26.*",
"psutil",
"pyarrow==17.0.*",
"pydantic==2.5.*",
"pyproj==3.6.*",
"pystac[validation]==1.8.*",
"rasterio==1.4.*",
"requests==2.31.*",
"requests_auth==7.0.*",
"requests-mock==1.11.*",
"rio-stac==0.8.*",
"shapely==2.0.*",
"stac-validator==3.3.*",
"stactools==0.5.*",
"ipykernel",
"jupyter",
"pytest",
"yarl==1.9.*",
"universal_pathlib",
]
dynamic = ["version"]
[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"
[project.scripts]
stacbuilder = "stacbuilder.__main__:cli"
[tool.hatch.build.targets.wheel]
packages = ["stacbuilder"]
[tool.hatch.build.targets.sdist]
only-include = [
"/stacbuilder",
]
[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