-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
66 lines (55 loc) · 1.69 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "py-qgis-wps"
description = "Py-Qgis-WPS is an implementation of the Web Processing Service standard from the Open Geospatial Consortium"
readme = "README.md"
requires-python = ">= 3.10"
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: GIS",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
]
dependencies = [
"tornado >= 6",
"pyzmq >= 17",
"PyYAML",
"OWSLib",
"psutil",
"redis",
"typing-extensions",
]
dynamic = ["version"]
[[project.authors]]
name = "3Liz"
email = "[email protected]"
[[project.maintainers]]
name = "David Marteau"
email = "[email protected]"
[project.urls]
Homepage = "https://gitthub.com/3liz/py-qgis-server"
Repository = "https://github.com/3liz/py-qgis-server.git"
Documentation = "https://docs.3liz.org/py-qgis-server"
[project.scripts]
wpsserver = "pyqgiswps.wpsserver:main"
wpsserverr-check = "pyqgiswps.healthcheck:main"
[project.entry-points."py_qgis_wps.access_policy"]
lizmap_acl = "pyqgisservercontrib.lizmapacl.filters:register_policy"
[tool.setuptools.dynamic]
version = { file = ["VERSION"] }
[tool.setuptools.packages.find]
include = [
"pyqgiswps",
"pyqgiswps.*",
"pyqgisservercontrib.*",
]
[tool.bandit]
skips = ["B410", "B320", "B403", "B301"]