-
Notifications
You must be signed in to change notification settings - Fork 193
/
pyproject.toml
53 lines (40 loc) · 1.57 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ckanext-spatial"
description = "Geo-related plugins for CKAN"
keywords = [""]
readme = "README.rst"
authors = [
{name = "CKAN Tech Team", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.9",
]
dependencies = []
license = {text = "AGPL"}
requires-python = ">=3.9"
dynamic = ["version"]
[project.entry-points."ckan.plugins"]
spatial_metadata = "ckanext.spatial.plugin:SpatialMetadata"
spatial_query = "ckanext.spatial.plugin:SpatialQuery"
spatial_harvest_metadata_api = "ckanext.spatial.plugin:HarvestMetadataApi"
csw_harvester = "ckanext.spatial.harvesters:CSWHarvester"
waf_harvester = "ckanext.spatial.harvesters:WAFHarvester"
doc_harvester = "ckanext.spatial.harvesters:DocHarvester"
# Legacy harvesters
gemini_csw_harvester = "ckanext.spatial.harvesters.gemini:GeminiCswHarvester"
gemini_doc_harvester = "ckanext.spatial.harvesters.gemini:GeminiDocHarvester"
gemini_waf_harvester = "ckanext.spatial.harvesters.gemini:GeminiWafHarvester"
[project.entry-points."ckan.test_plugins"]
test_spatial_plugin = "ckanext.spatial.tests.test_plugin.plugin:TestSpatialPlugin"
[project.urls]
Homepage = "http://okfn.org"
[tool.setuptools.dynamic]
version = {attr = "ckanext.spatial.__version__"}