-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 2.03 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (54 loc) · 2.03 KB
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
[project]
name = "ckanext-switzerland"
version = "0.0.1"
dynamic = ["dependencies", "optional-dependencies"]
description = "Plugins for data.opentransportdata.swiss"
authors = [
{name = "Liip AG", email = "odpch@liip.ch"}
]
maintainers = [
{name = "Liip AG", email = "odpch@liip.ch"}
]
license = {text = "AGPL-3.0-or-later"}
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
keywords = [
"CKAN",
"schema",
"DCAT",
"DCAT-AP",
"DCAT-AP CH",
"harvest",
"Switzerland",
]
[project.urls]
Documentation = "https://github.com/opendata-swiss/ckanext-switzerland-ng"
Repository = "https://github.com/opendata-swiss/ckanext-switzerland-ng"
Issues = "https://github.com/opendata-swiss/ckanext-switzerland-ng/issues"
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = { file = ["dev-requirements.txt"] }}
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "--basetemp=/tmp/pytest"
[project.entry-points."ckan.plugins"]
ogdch = "ckanext.switzerland.plugin:OgdchPlugin"
ogdch_pkg = "ckanext.switzerland.plugin:OgdchPackagePlugin"
ogdch_res = "ckanext.switzerland.plugin:OgdchResourcePlugin"
ogdch_group = "ckanext.switzerland.plugin:OgdchGroupPlugin"
ogdch_org = "ckanext.switzerland.plugin:OgdchOrganizationPlugin"
dcat_ch_rdf_harvester = "ckanext.switzerland.dcat.harvesters:SwissDCATRDFHarvester"
sbb_harvester = "ckanext.switzerland.harvester.sbb_harvester:SBBHarvester"
timetable_harvester = "ckanext.switzerland.harvester.timetable_harvester:TimetableHarvester"
[project.entry-points."ckan.rdf.profiles"]
swiss_dcat_ap = "ckanext.switzerland.dcat.profiles:SwissDCATAPProfile"
swiss_schemaorg = "ckanext.switzerland.dcat.profiles:SwissSchemaOrgProfile"