-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
78 lines (65 loc) · 1.79 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
[project]
name = "ckanext-video"
version = "2.1.10"
description = "A CKAN extension for embedding Youtube or Vimeo videos as views."
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", "video"]
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 = [
"ckantools>=0.4.1"
]
[project.optional-dependencies]
test = [
"mock",
"pytest>=4.6.5",
"pytest-cov>=2.7.1",
"coveralls"
]
[project.urls]
repository = "https://github.com/NaturalHistoryMuseum/ckanext-video"
changelog = "https://github.com/NaturalHistoryMuseum/ckanext-video/blob/main/CHANGELOG.md"
[project.entry-points."ckan.plugins"]
video = "ckanext.video.plugin:VideoPlugin"
[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.video.theme" = ["*", "**/*"]
[tool.commitizen]
name = "cz_nhm"
version = "2.1.10"
tag_format = "v$version"
update_changelog_on_bump = true
changelog_incremental = true
version_files = [
"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