-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
89 lines (76 loc) · 2.07 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
[project]
name = "ckanext-attribution"
version = "1.2.13"
description = "A CKAN extension that adds support for complex attribution."
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", "attribution"]
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 = [
"orcid~=1.0",
"sqlalchemy",
"requests",
"fuzzywuzzy[speedup]",
"ckantools>=0.4.1"
]
[project.optional-dependencies]
test = [
"mock",
"pytest>=4.6.5",
"pytest-cov>=2.7.1",
"coveralls"
]
cli = [
"spacy[transformers]~=3.7.0",
"unidecode~=1.0",
"nameparser~=1.0",
"prompt_toolkit~=3.0"
]
[project.urls]
repository = "https://github.com/NaturalHistoryMuseum/ckanext-attribution"
changelog = "https://github.com/NaturalHistoryMuseum/ckanext-attribution/blob/main/CHANGELOG.md"
[project.entry-points."ckan.plugins"]
attribution = "ckanext.attribution.plugin:AttributionPlugin"
[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.attribution.theme" = ["*", "**/*"]
[tool.commitizen]
name = "cz_nhm"
version = "1.2.13"
tag_format = "v$version"
update_changelog_on_bump = true
changelog_incremental = true
version_files = [
"ckanext/attribution/theme/package.json",
"pyproject.toml:version",
"CITATION.cff:^version"
]
[tool.ruff.format]
quote-style = "single"
[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