-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
82 lines (69 loc) · 1.9 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
[project]
name = "ckanext-query-dois"
version = "4.1.1"
description = "A CKAN extension that creates DOIs for queries on resources."
readme = "README.md"
requires-python = ">=3.6"
license = { text = "GPL-3.0-or-later" }
authors = [
{ name = "Natural History Museum", email = "[email protected]" }
]
keywords = ["CKAN", "data", "doi"]
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 = [
"datacite==1.1.2",
"dicthash==0.0.2",
"bcrypt==3.1.4",
"ckantools>=0.3.0"
]
[project.optional-dependencies]
test = [
"mock",
"pytest>=4.6.5",
"pytest-cov>=2.7.1",
"coveralls"
]
[project.urls]
repository = "https://github.com/NaturalHistoryMuseum/ckanext-query-dois"
changelog = "https://github.com/NaturalHistoryMuseum/ckanext-query-dois/blob/main/CHANGELOG.md"
[project.entry-points."ckan.plugins"]
query_dois = "ckanext.query_dois.plugin:QueryDOIsPlugin"
[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.query_dois.theme" = ["*", "**/*"]
[tool.commitizen]
name = "cz_nhm"
version = "4.1.1"
tag_format = "v$version"
update_changelog_on_bump = true
changelog_incremental = true
version_files = [
"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