-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
100 lines (87 loc) · 2.42 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-versioned-datastore"
version = "5.6.3"
description = "A CKAN extension providing a versioned datastore using MongoDB and Elasticsearch"
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", "versioned_datastore"]
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",
"backports.csv==1.0.6",
"cchardet==2.1.4",
"splitgill==2.0.0",
"elasticsearch-dsl>=6.0.0,<7.0.0",
"elasticsearch>=6.0.0,<7.0.0",
"jsonschema==3.0.0",
"openpyxl==2.5.8",
"pandas==1.4.1",
"requests",
"six>=1.11.0",
"xlrd==1.1.0",
"fastavro==1.7.0",
"ckantools>=0.3.0",
"cachetools>=4.2.4"
]
[project.optional-dependencies]
test = [
"mock",
"pytest>=4.6.5",
"pytest-cov>=2.7.1",
"coveralls"
]
doi = [
"ckanext-query-dois~=2.3.0"
]
attribution = [
"ckanext-attribution~=1.2.0"
]
[project.urls]
repository = "https://github.com/NaturalHistoryMuseum/ckanext-versioned-datastore"
changelog = "https://github.com/NaturalHistoryMuseum/ckanext-versioned-datastore/blob/main/CHANGELOG.md"
[project.entry-points."ckan.plugins"]
versioned_datastore = "ckanext.versioned_datastore.plugin:VersionedSearchPlugin"
[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.versioned_datastore.theme" = ["*", "**/*"]
"ckanext.versioned_datastore.migration" = ["*", "**/*"]
[tool.commitizen]
name = "cz_nhm"
version = "5.6.3"
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