forked from GeoNode/QGISGeoNodePlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (63 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
[tool.poetry]
name = "qgis_geonode"
version = "1.0.1-dev"
description = "A QGIS plugin for integrating with modern GeoNode"
authors = ["Kartoza <[email protected]>"]
license = "GPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.6"
toml = "^0.10.2"
typer = "^0.3.2"
pytest = "^6.2.1"
pytest-qt = "^3.3.0"
black = {version = "^20.8b1", allow-prereleases = true, python = "^3.8"}
flask = "^1.1.2"
importlib-metadata = "^3.3.0"
mkdocs = "^1.1.2"
mkdocs-material = "^6.2.3"
httpx = "^0.16.1"
pytest-xvfb = "^2.0.0"
Pygments = "^2.8.0"
pymdown-extensions = "^8.1.1"
pytest-custom-exit-code = "^0.3.0"
mypy = "^0.930"
qgis-stubs = "^0.1.0"
PyQt5-stubs = "^5.15.2"
[tool.poetry.dev-dependencies]
[tool.pytest.ini_options]
addopts = "--verbose --exitfirst"
[tool.black]
exclude = """\
"""
[tool.qgis-plugin.metadata]
name = "QGIS GeoNode"
qgisMinimumVersion = "3.18"
icon = "plugin-logo.png"
experimental = "False"
deprecated = "False"
homepage = "https://kartoza.github.io/qgis_geonode"
tracker = "https://github.com/kartoza/qgis_geonode/issues"
repository = "https://github.com/kartoza/qgis_geonode"
tags = [
"geonode",
"wms",
"wfs",
"wcs",
]
category = "plugins"
hasProcessingProvider = "no"
about = """\
This plugin adds GeoNode client functionality to QGIS - search, load and manage GeoNode resources from inside QGIS.
Initial development has been commissioned by the by the Pacific Community (SPC), with funcding from the World Bank, \
and implemented by the Kartoza and GeoSolutions teams. The plugin is actively maintained and aims to keep up to \
date with changes in the GeoNode API.
Check the website for a user guide and more detail.\
"""
# changelog: dynamically pulled from the README.md 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>=0.12"]
build-backend = "poetry.masonry.api"