-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
52 lines (48 loc) · 1.46 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
[tool.poetry]
name = "qgis-stac-plugin"
version = "1.1.2"
description = "QGIS plugin for reading STAC API catalogs"
authors = ["Kartoza <[email protected]>"]
license = "GPL v3.0"
[tool.poetry.dependencies]
mkdocs = "^1.2.3"
mkdocs-material = "^8.1.4"
mkdocs-git-revision-date-localized-plugin = "^0.11.1"
mkdocs-video = "^1.1.0"
python = "^3.8"
httpx = "^0.20.0"
toml = "^0.10.2"
typer = "^0.4.0"
[tool.poetry.dev-dependencies]
PyQt5 = "^5.15.6"
flask = "^2.0.2"
[tool.qgis-plugin.metadata]
name = "STAC API Browser "
qgisMinimumVersion = "3.0"
qgisMaximumVersion = "3.99"
icon = "icon.png"
experimental = "False"
deprecated = "False"
homepage = "https://stac-utils.github.io/qgis-stac-plugin"
tracker = "https://github.com/stac-utils/qgis-stac-plugin/issues"
repository = "https://github.com/stac-utils/qgis-stac-plugin"
tags = [
"stac",
"web",
"raster",
"cog",
]
category = "plugins, web"
hasProcessingProvider = "no"
about = """\
Adds functionality to search, load and manage STAC API resources inside QGIS.
Sponsored by Microsoft.
"""
# changelog: dynamically pulled from the docs/plugin/changelog.txt file
# description: dynamically pulled from the tool.poetry.description section
# version: dynamically pulled from the tool.poetry.version section
# author: dynamically pulled from the tool.poetry.authors section
# email: dynamically pulled from the tool.poetry.authors section
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"