-
Notifications
You must be signed in to change notification settings - Fork 146
/
pyproject.toml
65 lines (60 loc) · 2.35 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
[project]
name = "ckanext-dcat"
version = "2.1.0"
description = "Plugins for exposing and consuming DCAT metadata on CKAN"
authors = [
{name = "Adrià Mercader", email = "[email protected]"}
]
maintainers = [
{name = "CKAN Tech Team and contributors", email = "[email protected]"},
{name = "Seitenbau Govdata"},
{name = "Stefan Oderbolz"}
]
license = {text = "AGPL"}
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
keywords = [
"ckan",
"ckanext",
"DCAT",
"DCAT-AP",
"Schema.org",
"Linked data",
"RDF",
"Semantic data"
]
dependencies = []
[project.urls]
Documentation = "https://docs.ckan.org/projects/ckanext-dcat"
Repository = "https://github.com/ckan/ckanext-dcat"
Issues = "https://github.com/ckan/ckanext-dcat/issues"
Changelog = "https://docs.ckan.org/projects/ckanext-dcat/en/latest/changelog/"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.entry-points."ckan.plugins"]
dcat_xml_harvester = "ckanext.dcat.harvesters:DCATXMLHarvester"
dcat_json_harvester = "ckanext.dcat.harvesters:DCATJSONHarvester"
dcat_rdf_harvester = "ckanext.dcat.harvesters:DCATRDFHarvester"
dcat_json_interface = "ckanext.dcat.plugins:DCATJSONInterface"
dcat = "ckanext.dcat.plugins:DCATPlugin"
structured_data = "ckanext.dcat.plugins:StructuredDataPlugin"
# Test plugins
test_rdf_harvester = "ckanext.dcat.tests.harvester.test_harvester:TestRDFHarvester"
test_rdf_null_harvester = "ckanext.dcat.tests.harvester.test_harvester:TestRDFNullHarvester"
test_rdf_exception_harvester = "ckanext.dcat.tests.harvester.test_harvester:TestRDFExceptionHarvester"
[project.entry-points."ckan.rdf.profiles"]
euro_dcat_ap = "ckanext.dcat.profiles:EuropeanDCATAPProfile"
euro_dcat_ap_2 = "ckanext.dcat.profiles:EuropeanDCATAP2Profile"
euro_dcat_ap_3 = "ckanext.dcat.profiles:EuropeanDCATAP3Profile"
euro_dcat_ap_scheming = "ckanext.dcat.profiles:EuropeanDCATAPSchemingProfile"
dcat_us_3="ckanext.dcat.profiles:DCATUS3Profile"
schemaorg = "ckanext.dcat.profiles:SchemaOrgProfile"