-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
100 lines (86 loc) · 2.44 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[project]
name = "ckanext-nhm"
version = "6.9.8"
description = "A CKAN extension for the Natural History Museum's Data Portal."
readme = "README.md"
requires-python = ">=3.6"
license = { text = "GPL-3.0-or-later" }
authors = [
{ name = "Natural History Museum", email = "data@nhm.ac.uk" }
]
keywords = ["CKAN", "data", "nhm"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
]
dependencies = [
"importlib-resources",
"ckantools>=0.3.0",
"cachetools>=4.2.4",
"lxml>=4.4.2",
"elasticsearch-dsl>=6.0.0,<7.0.0",
"ckanext-contact>=2.3.0",
"ckanext-doi>=3.1.10",
"ckanext-gallery>=3.0.0",
"ckanext-gbif>=2.1.0",
"ckanext-graph>=2.1.0",
"ckanext-iiif>=3.0.1",
"ckanext-ldap>=3.2.0",
"ckanext-query-dois>=4.0.0",
"ckanext-statistics>=3.1.0",
"ckanext-versioned-datastore>=5.1.0",
# this also depends on ckanext-dcat==1.3.0 (see readme)
"requests"
]
[project.optional-dependencies]
test = [
"mock",
"pytest>=4.6.5",
"pytest-cov>=2.7.1",
"coveralls"
]
[project.urls]
repository = "https://github.com/NaturalHistoryMuseum/ckanext-nhm"
changelog = "https://github.com/NaturalHistoryMuseum/ckanext-nhm/blob/main/CHANGELOG.md"
[project.entry-points."ckan.plugins"]
nhm = "ckanext.nhm.plugin:NHMPlugin"
[project.entry-points."ckan.rdf.profiles"]
nhm_dcat = "ckanext.nhm.dcat.profiles:NHMDCATProfile"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool]
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
exclude = ["tests", "docs"]
[tool.setuptools.package-data]
"ckanext.nhm.theme" = ["*", "**/*"]
"ckanext.nhm.src" = ["*", "**/*"]
[tool.commitizen]
name = "cz_nhm"
version = "6.9.8"
tag_format = "v$version"
update_changelog_on_bump = true
changelog_incremental = true
version_files = [
"ckanext/nhm/theme/package.json",
"pyproject.toml:version",
"CITATION.cff:^version"
]
[tool.black]
line-length = 88
skip_string_normalization = true
[tool.pylint]
max-line-length = 88
disable = ["C0114", "R0903"]
[tool.docformatter]
wrap-summaries = 88
wrap-descriptions = 88
pre-summary-newline = true
make-summary-multi-line = true